-
Notifications
You must be signed in to change notification settings - Fork 14
/
Windows-miniconda3-python3-numpy-pandas-install.cmd
77 lines (66 loc) · 2.65 KB
/
Windows-miniconda3-python3-numpy-pandas-install.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
REM Last update to this script on January 5, 2018
REM Prerequisite: Windows 10 64-bit
REM Prerequisite: https://chocolatey.org/install
REM run the following commands using cmd.exe with Administrator privileges:
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
choco feature enable -n useFipsCompliantChecksums
choco install miniconda3
REM run the following commands with Administrator privileges
REM via Start menu/Programs/Anaconda3/Anaconda command line prompt:
##########################################################################
# Never use pip to install spyder application.
# never use pip to upgrade python packages to avoid corrupting spyder install
# Instead, use conda to install spyder application.
# Only use conda in combination with spyder and python3.6+
##########################################################################
conda install anaconda conda cython matplotlib numpy pandas scipy sympy spyder pip
conda update anaconda conda cython matplotlib numpy pandas scipy sympy spyder pip
conda update anaconda conda cython matplotlib numpy pandas scipy sympy spyder pip
conda install jupyter
conda install dvc
conda install ipython
conda install tornado
conda install setuptools
conda install seaborn
conda install beautifulsoup4
conda install argparse
conda install sklearn
conda install streamlink
conda install mistune
conda install networkx
conda install py4j
conda install runipy
conda install socli
conda install scikit-image
conda install scikit-learn
conda install scipy-data_fitting
conda install statsmodels
conda install jsonschema
# do not install pattern package, because it causes severe downgrade of anaconda
# and python package versions: conda install pattern
conda install instantmusic
conda install fire
conda install boto3
conda install mock
conda install pytest
conda install pytest-mock
conda install bcolz
conda install configobj
conda install ipywidgets
conda install nibabel
conda install Pillow-SIMD
conda install qgrid
conda install tqdm
conda install traitlets
conda install visdom
conda install filelock
conda install spectral
conda install elasticsearch
# following package requires at least 700 MB of free disk space:
# conda config --add channels conda-forge
# conda install tensorflow-gpu
# conda install tensorflow
# conda install tensorfx
# conda install keras
REM Check if all dependencies are installed by inspecting
REM Spyder/Help/Dependencies window in Spyder application