how to add packages like numpy,scipy and others to the sublime 2 python?

5.3k Views Asked by At

I am uinsg sublime 2 on a windows machine and not figure out how can I manage and add different python packages into the sublime 2 python? I have multiple versions of python on my machine and it seems sublime is using my python 2.7 ( i dont remember if I set that). I also have REPL up and running but I can not make the python 2.7 from the command line of my sublime to import numpy or install or anything. if you can explain to me how can I work around issues like this it would be great.

2

There are 2 best solutions below

3
On

To install packages such as pyGame, you need to download the installer and run it. Since you have multiple versions of Python, you will need to select the required version in the installer.

A link to pyGame: http://www.pygame.org/download.shtml

Link to all packages: https://pypi.python.org/pypi?%3Aaction=index

Make sure to download the packages for your required python version. You could also use easy install which would simplify the module installation process.

EDIT:

To link sublime text and python:

1) Create a new build system by: Tools > Build System > New build system

2) Add the following lines to it:

{
"cmd": ["C:\\Python27\\python.exe", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}

(Change the path if required)

3) Save the file and build (Ctrl + B) your programs to run with your python.

0
On
  1. install cmder from https://cmder.net/
  2. run cmder
  3. type this code pip install XXXX

just replace your package name with "XXXX".

for example: pip install numpy

you can install other packages with this way:))