Python Forum
Help getting PIP working
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help getting PIP working
#1
DELETED BY OP

How do I make PIP install NUMPY please?
Reply
#2
Look at Python 3.6/3.7 and pip installation under Windows

If follow link over,then work like this from cmd:
# Check that pip work latest version is 18.0
C:\>pip -V
pip 18.0 from c:\python37\lib\site-packages\pip (python 3.7)


# Install
C:\>pip install numpy
Collecting numpy
  Downloading ....1.15.2-cp37-none-win32.whl (9.9MB)
    100% |████████████████████████████████| 9.9MB 2.3MB/s
Installing collected packages: numpy
Successfully installed numpy-1.15.2

# Test that it work
C:\>python
Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:06:47) [MSC v.1914 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy as np
>>>
>>> np.__version__
'1.15.2'
>>>
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020