I'm trying to get gcspypi to install packages in my python3 environment. The following command seems to use pip instead of pip3:
gcspypi --repository my-python-repository install some-module==0.1.0:
Output:
using repository `my-python-repository
connected
installing some-module==0.1.0
Requirement already satisfied (use --upgrade to upgrade): redis>=3.3 in /Users/foobar/Library/Python/2.7/lib/python/site-packages
Cleaning up...
Requirement already satisfied (use --upgrade to upgrade): plotly>=4.3 in /Users/foobar/Library/Python/2.7/lib/python/site-packages
How do I get gcspypi to use pip3 instead of pip?!
I'm trying to get
gcspypito install packages in my python3 environment. The following command seems to usepipinstead ofpip3:gcspypi --repository my-python-repository install some-module==0.1.0:Output:
How do I get
gcspypito use pip3 instead of pip?!