5 Antworten
+ 3
Try this:
1- Find pip file inside python 3.4.0/scripts
2- write the path +/pip in the command prompt instead of just pip
3- install <module>
+ 2
Yamen that makes sense, thank you
+ 2
Yamen now my py is py3.4, but, when i tried to install pyside i got this: Command C:\Python34\python.exe -c "import setuptools, tokenize;__file__='C:\\Users\\nuhum\\AppData\\Local\\Temp\\pip_build_nuhum\\pyside\\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install —record C:\Users\nuhum\AppData\Local\Temp\pip-99_cmww3-record\install-record.txt —single-version-externally-managed —compile failed with error code 1 in C:\Users\nuhum\AppData\Local\Temp\pip_build_nuhum\pyside
Storing debug log for failure in C:\Users\nuhum\pip\pip.log
what to do?
+ 2
I'm not actuality sure why did this happen, perhaps you didn't find the proper pip file anyways try this instead it may work for you [in command prompt]:
python-3.4 -m pip install pyside
0
Zhenis Otarbay to use different python versions on the same system and distinguish them between your projects I recommend to start using such tools as venv, virtualenv, poetry and etc. This tools help and manage isolated python environment for your project where you can easily install preferred python and package (pip) version.