I download and unzip python-3.9.6-embed-amd64.zip file from python.org . Then, I unzipped python39.zip and I found site-packages folder in there.I added manually pandas package from pypi. Lastly, I tried this command: python.exe setup.py install . But it doesnt work. How can I install manually a package embedded python ? I want to import that for my script.
Asked
Active
Viewed 919 times
1 Answers
0
You can download manually a tar.gz file when you don't want to use pip from pypi.org. Then you just need it to extract it in Windows PowerShell: tar -xvzf C:\Users\USERNAME\Downloads\FILENAME.tar.gz -C C:\Users\USERNAME\Downloads\FILENAMEDIR
as 1st path is from and 2nd one path to.
Then you just navigate to the dir cd C:\Users\USERNAME\Downloads\FILENAMEDIR\FILENAME
and run py setup.py install