+ 8
How to install the third party libraries in python?
6 Réponses
+ 6
the easiest way is to download and install pip. Then go to your command line and type in pip install libraryName
Edit: If it doesn’t work, then you will have to go online and find the file you want to install, download it, and go to your command line and type
cd filePath
python -m setup.py build
python -m setup.py install
and after that you can delete the file on your conputer
+ 4
Not working...Jens-Emil Sønderup Müller
+ 3
use 'pip install'
+ 2
Also if you're running on a Linux system you need to run the command as a superuser
+ 1
go to command prompt and type pip and see if that command is recognised, make sure your antivirus is not blocking it, also make sure pip is installed.
if you installed latest python from official source it should be installed, if you feel pip is installed and still pip command dosent work, try pip3 instead, if it still dosent work, you might have to add pip to your environment variables, in windows.
0
pip install