I wanted to download pyperclip module. I have folder with some files like "docs" and so. There is also setup.py. I double click, black window opens and closes. I have red many pages in the Internet where have been described how to set up mudules, but i can't do that. For example, look at screenshot. enter image description here. It says "command is not inside or ouside". Can anyone give me ditailed instraction of instaling modules?
Asked
Active
Viewed 4,124 times
-1
-
1That is not how you install a module. You can `pip install pyperclip` from the command line, you should not try to just run `setup.py` – Cory Kramer Jan 05 '18 at 16:04
-
like that? [link] (http://prntscr.com/hwgxr8) – Maxim Repin Jan 05 '18 at 16:08
1 Answers
-1
First you need to add python to path (like in this answer Then you need to install pip and setuptools to correctly install packages And after try install your package

Kuprienko Dmitry
- 9
- 1
-
Should i download setuptools-38.4.0-py2.py3-none-any.whl (md5) from Setuptools or setuptools-38.4.0.zip (md5)? – Maxim Repin Jan 05 '18 at 16:21
-
Add python folder and Scripts (!) folder to path: {path to your python folder}Python36-32\Scripts After that you can use pip to install packages: pip install setuptools – Kuprienko Dmitry Jan 05 '18 at 16:30