Python Forum
Thread Rating:
  • 1 Vote(s) - 1 Average
  • 1
  • 2
  • 3
  • 4
  • 5
pip and setup script
#12
Quote:Only problem I've had with pip on Windows (10) was I downloaded and installed Numpy & Scipy wheels from Gohlke.
pip has many features that may be not so known Undecided 

Here Numpy working in about 30-sec.
No search at Gohlke or download from web,pip dos it all.
C:\                                                                                                
λ virtualenv numpy_test                                                                            
Using base prefix 'C:\\Python34'                                                                   
New python executable in numpy_test\Scripts\python.exe                                             
Installing setuptools, pip, wheel...done.                                                          
                                                                                  
C:\numpy_test                                                                                      
λ cd scripts                                                                                       
                                                                                                   
C:\numpy_test\Scripts                                                                              
λ activate                                                                                         
(numpy_test) C:\numpy_test\Scripts 
                                                                
λ pip install --use-wheel numpy                                                                    
Collecting numpy                                                                                   
  Downloading numpy-1.11.2-cp34-none-win32.whl (6.5MB)                                             
    100% |################################| 6.5MB 77kB/s                                           
Installing collected packages: numpy                                                               
Successfully installed numpy-1.11.2                                                                
           
(numpy_test) C:\numpy_test\Scripts                                                                 
λ python                                                                                           
Python 3.4.2 (v3.4.2:ab2c023a9432, Oct  6 2014, 22:15:05) [MSC v.1600 32 bit (Intel)] on win32     
Type "help", "copyright", "credits" or "license" for more information.                             
>>> import numpy                                                                                   
>>> numpy.__version__                                                                              
'1.11.2'                                                                                           
>>>
I have help many who has been struggled for days to install Numpy on Windows.
Maybe the pip documentation could be clearer,
it's really big because there are so many option(which can be confusing) Doh
Reply


Messages In This Thread
pip and setup script - by metulburr - Oct-24-2016, 08:13 PM
RE: pip and setup script - by micseydel - Oct-24-2016, 08:37 PM
RE: pip and setup script - by Yoriz - Oct-24-2016, 08:51 PM
RE: pip and setup script - by snippsat - Oct-24-2016, 09:10 PM
RE: pip and setup script - by ichabod801 - Oct-24-2016, 09:13 PM
RE: pip and setup script - by snippsat - Oct-24-2016, 09:17 PM
RE: pip and setup script - by metulburr - Oct-24-2016, 09:28 PM
RE: pip and setup script - by snippsat - Oct-24-2016, 09:47 PM
RE: pip and setup script - by Larz60+ - Oct-24-2016, 09:50 PM
RE: pip and setup script - by Skaperen - Oct-25-2016, 06:17 AM
RE: pip and setup script - by sparkz_alot - Oct-25-2016, 09:26 PM
RE: pip and setup script - by snippsat - Oct-25-2016, 09:54 PM
RE: pip and setup script - by Ofnuts - Oct-26-2016, 06:58 AM
RE: pip and setup script - by sparkz_alot - Oct-26-2016, 02:33 PM
RE: pip and setup script - by Larz60+ - Oct-26-2016, 03:59 PM

Forum Jump:

User Panel Messages

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