|
|
(One intermediate revision by one user not shown) |
Line 1: |
Line 1: |
| | | |
− | Anaconda 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:<br/> | + | [https://www.continuum.io/downloads 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:<br/> |
| | | |
| 0. Install Anaconda<br/> | | 0. Install Anaconda<br/> |
Line 26: |
Line 26: |
| 4. Manage Packages | | 4. Manage Packages |
| | | |
− | # check existing packages<br/>''conda list''<br/> | + | #check existing packages<br/>''conda list''<br/> |
| | | |
− | # search for other packages<br/>''conda search sqlalchemy'' | + | #search for other packages<br/>''conda search sqlalchemy'' |
| | | |
− | # install package<br/>''conda install --name py35 sqlalchemy<br/>conda install -c pvlib pvlib'' | + | #install package<br/>''conda install --name py35 sqlalchemy<br/>conda install -c pvlib pvlib'' |
| | | |
− | # remove package<br/>''conda remove --name py35 sqlalchemy'' | + | #remove package<br/>''conda remove --name py35 sqlalchemy'' |
| | | |
− | # install psycopg2<br/>cd C:/path<br/>''easy_install psycopg2-2.6.1.win-amd64-py3.4-pg9.4.4-release.exe''<br/> | + | #install psycopg2<br/>cd C:/path<br/>''easy_install psycopg2-2.6.1.win-amd64-py3.4-pg9.4.4-release.exe'' |
| | | |
− | <br/>
| + | There are various Python interpreters like Spyder, Ninja, and [http://www.pyzo.org/ Pyzo.] |
| | | |
| <br/> | | <br/> |
Latest revision as of 20:09, 12 September 2016
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.