-
-
Save dewdad/fe3ce7d727af3d5d18c2b5dec9b02fe4 to your computer and use it in GitHub Desktop.
Revisions
-
lopezjurip renamed this gist
Aug 19, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
lopezjurip revised this gist
Aug 19, 2015 . No changes.There are no files selected for viewing
-
lopezjurip revised this gist
Aug 19, 2015 . No changes.There are no files selected for viewing
-
lopezjurip revised this gist
Aug 19, 2015 . No changes.There are no files selected for viewing
-
lopezjurip revised this gist
Aug 19, 2015 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -42,4 +42,5 @@ pip install -i https://pypi.binstar.org/carlkl/simple numpy To almost any other lib you can simple use `pip install`, for example: ```sh pip install simpy ``` -
lopezjurip created this gist
Aug 19, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,45 @@ # Install Chocolatey on Windows 10 First, you have to **run Powershell as administrator**. Then type the following: ```s Set-ExecutionPolicy Unrestricted ``` Accept to continue. Then we install Chocolatey: ```sh iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1')) ``` Try typing `choco` to see all the available commands. ### Install Git To install `git` and add it to our path: ```sh choco install git.install -params '"/GitOnlyOnPath"' -y ``` ### Install Python 3 Using choco is really easy, just do: ```sh choco install python -y ``` We need to add `pip` to our path. ```sh [Environment]::SetEnvironmentVariable("Path", "$env:Path;C:\tools\python\Scripts\", "User") ``` Maybe you will need `numpy` lib. It's hard to install it from source. So we will use a `wheel`: ```sh pip install -i https://pypi.binstar.org/carlkl/simple numpy ``` To almost any other lib you can simple use `pip install`, for example: ```sh ```