Anaconda by Continuum is a easy to use python package for windows users. There are various tutorials and a good documentation. Here is a short list of basic comands:
0. Install Anaconda
1. open cmd.exe:
conda --version
-> conda 4.0.5
2. Create Environment
conda info --envs
conda create --help
conda create --name GIVEANAME python=3.5 anaconda
activate GIVEANAME
deactivate
conda remove --name GIVEANAME --all
conda create --name py35 python
activate py35
deactivate
3. Manage Python
conda search --full-name python
python --version
-> 3.5.1
4. Manage Packages
- check existing packages
conda list
- search for other packages
conda search sqlalchemy
- install package
conda install --name py35 sqlalchemy
conda install -c pvlib pvlib
- remove package
conda remove --name py35 sqlalchemy
- install psycopg2
cd C:/path
easy_install psycopg2-2.6.1.win-amd64-py3.4-pg9.4.4-release.exe
There are various Python interpreters like Spyder, Ninja, and Pyzo.