Showing posts with label pip. Show all posts
Showing posts with label pip. Show all posts

Tuesday, March 3, 2020

Windows install pip

1. Open cmd as administrator
2. Install python
3. curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
4. Then run the following command in the folder where you have downloaded get-pip.py:
python get-pip.py

5. Add pip installation path to environment PATH
6. check
pip help

Wednesday, November 8, 2017

Python locale error: unsupported locale setting

When using pip install, the local error problem occur.
export LC_ALL="en_US.UTF-8"
export LC_CTYPE="en_US.UTF-8"
sudo dpkg-reconfigure locales
Then select en_US.UTF-8 to install

Occurred when install virtualenv.