Re: Python added to PATH, cannot be directly accessed, cannot install pip

2021-09-27 Thread Eryk Sun
On 9/27/21, Mats Wichmann wrote: > > pip, meanwhile, is not in the same directory as the python executable, > so even "adding python to PATH" doesn't solve the problem of running > pip. Invoke it like this instead: The installer's option to add Python to PATH adds both the installation directory

Re: Python added to PATH, cannot be directly accessed, cannot install pip

2021-09-27 Thread Mats Wichmann
Aliases, turned off both App Installer python.exe and App Installer python3.exe. Still can't install pip, Python was still not found. I've tried different keywords ("py get-pip.py", python3 get-pip.py", etc.). Still doesn't work. Python is added to P

Re: Python added to PATH, cannot be directly accessed, cannot install pip

2021-09-27 Thread Eryk Sun
On 9/27/21, Will wrote: > >I am using a Lenovo Laptop using Windows. I'm trying to install >get-pip.py The installer includes pip by default and has an option to update PATH for you, though the latter isn't enabled by default. Latest 64-bit release: https://www.python.org/ftp/python/3.9.

Python added to PATH, cannot be directly accessed, cannot install pip

2021-09-27 Thread Will
r a week, I've been trying to add Python to PATH, so I can install get-pip.py to Python. I've added the exact file location for Python to Path in both User Variables and System Variables. I've executed Manage App Execution Aliases, turned off both App Installer python.exe

Re: User failed to install PIP

2019-06-24 Thread Barry Scott
python? Once python is installed you can run PIP like this: C:\Users\barry> py -m pip Usage: C:\Python37.win64\python.exe -m pip [options] Barry > On 23 Jun 2019, at 14:27, Sagar Jape wrote: > > I'm not able to install pip in my pc it gives foll

Re: install pip

2015-09-07 Thread Laura Creighton
Try that question on disutils-...@python.org where the authors of pip are. Laura -- https://mail.python.org/mailman/listinfo/python-list

install pip

2015-09-07 Thread chenc...@inhand.com.cn
hi: I cross compiled python2.7.10 and install python on my embedded device. But now, I may install pip on my embedded device. So, I did it as follow: 1>I execute cmd:python -m ensurepip. It ocuurs errors as follow: Traceback (most recent call last): F

Re: install pip

2015-08-31 Thread Laura Creighton
In a message of Mon, 31 Aug 2015 15:38:26 +0800, "chenc...@inhand.com.cn" write s: >hi: >I cross compiled python2.7.10 and install python on my embedded >device. But now, I may install pip on my embedded device. So, how can i >do that? https://pip.pypa.io/en/latest/in

install pip

2015-08-31 Thread chenc...@inhand.com.cn
hi: I cross compiled python2.7.10 and install python on my embedded device. But now, I may install pip on my embedded device. So, how can i do that? -- https://mail.python.org/mailman/listinfo/python-list

Re: How to install pip for python3 on OS X?

2013-11-22 Thread xDog Walker
On Friday 2013 November 22 12:10, Travis Griggs wrote: > (aside. I do not use GoogleGroups, but have been accused of somehow sending > email that looks like I do. Does this email look like that?) No. -- Yonder nor sorghum stenches shut ladle gulls stopper torque wet strainers. -- https://mail

Re: How to install pip for python3 on OS X?

2013-11-22 Thread Travis Griggs
- > > http://www.pip-installer.org/en/latest/installing.html > > # download and install setuptools > curl -O https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py > python3 ez_setup.py > # download and install pip > curl -O https://raw.github.com/pypa/pip/

Re: How to install pip for python3 on OS X?

2013-11-22 Thread Travis Griggs
On Nov 20, 2013, at 6:01 AM, Mark Lawrence wrote: > On 20/11/2013 06:55, Travis Griggs wrote: >> OSX (Mavericks) has python2.7 stock installed. But I do all my own >> personal python stuff with 3.3. I just flushed my 3.3.2 install and >> installed the new 3.3.3. So I need to install pyserial aga

Re: How to install pip for python3 on OS X?

2013-11-20 Thread Mark Lawrence
On 20/11/2013 06:55, Travis Griggs wrote: OSX (Mavericks) has python2.7 stock installed. But I do all my own personal python stuff with 3.3. I just flushed my 3.3.2 install and installed the new 3.3.3. So I need to install pyserial again. Just idle curiosity but why do you have to do this? On

Re: How to install pip for python3 on OS X?

2013-11-20 Thread Craig Yoshioka
Mavericks? Homebrew all the way. Google Homebrew and install it brew install python3 pip3 install pyserial Craig reporting from the road 10550 N Torrey Pines Rd La Jolla CA 92037 work: 858 784 9208 cell: 619 623 2233 > On Nov 19, 2013, at 10:55 PM, Travis Griggs wrote: > > OSX (Mavericks) ha

Re: How to install pip for python3 on OS X?

2013-11-19 Thread Ned Deily
ps://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py python3 ez_setup.py # download and install pip curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py python3 get-pip.py # use pip to install python3 -m pip install pyserial # Don't want it? python3 -m pip uninstall pyserial -

How to install pip for python3 on OS X?

2013-11-19 Thread Travis Griggs
OSX (Mavericks) has python2.7 stock installed. But I do all my own personal python stuff with 3.3. I just flushed my 3.3.2 install and installed the new 3.3.3. So I need to install pyserial again. I can do it the way I've done it before, which is: Download pyserial from pypi untar pyserial.tgz