python3.6安装 下载python安装包,这里下载的最新的3.6.1版本 https://www.python.org/ftp/python/3.6.1/ 将安装包上传到服务器并解压 tar zxvf Python-3.6.1.tgz 安装python cd Python-3.6.1 ./configure --prefix=/usr/local/python-3.6.1 #重要,指定python的安装路径,可以自己设置. make sudo make install 修改python的软…
Jupyter All In One Jupyter Architecture https://jupyter.readthedocs.io/en/latest/projects/architecture/content-architecture.html iPython Jupyter Notebook Interface https://ipython.org/index.html Jupyter Notebook https://jupyter.readthedocs.io/en/late…
新建虚拟机->安装CentOS7->新建虚拟交换机:内部网络->CentOS7设置->网络适配器:虚拟交换机:新建虚拟交换机->进入CentOS # cd /etc/sysconfig/network-scripts/ # ls -a # vi ifcfg-eth0 #(有些系统不是eth0,前面ifcfg-的固定的) 添加或修改,最简配置如下 TYPE=Ethernet BOOTPROTO=static DEVICE=ens0 ONBOOT=yes IPADDR=192.1…
Introduction Scientific Computing Tools for Python. Seen in Scipy.org. Environment Linux, CentOS 7 with KDE, python 2.7 Installation python -m pip install --upgrade pip # Do not use sudo for the next command pip install --user numpy scipy matplotlib…
matplotlib is a python 2D plotting library which produces publication quality figures in a variety of hardcopy formats and interactive environments across platforms. matplotlib can be used in python scripts, the python and ipython shell (ala MATLAB®*…
from:http://analyticsbot.ml/2016/10/machine-learning-pre-processing-features/ Machine Learning : Pre-processing features October 21, 2016 I am participating in this Kaggle competition. It is a prediction problem contest. The problem statement is: How…