pyenv ipython jupyter

pyenv

pyenv  依赖安装

yum -y install git gcc make patch zlib-devel gdbm-devel openssl-devel sqlite-devel bzip2-devel readline-devel

安装pyenv

安装git yum -y install git

安装pyenv curl -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash

配置环境变量, 在 ~/.bash_profile里增加如下内容

export PATH="/root/.pyenv/bin:$PATH"

eval "$(pyenv init -)"

eval "$(pyenv virtualenv-init -)"

~

pyenv install --list  //可安装版本

pyenv install 3.4.1 -v //install

pyenv install 3.2.2 -v

pyenv install 2.7.12 -v

pyenv rehash //更新数据库

pyenv versions //查看当前已安装版本

pyenv version //查看当前使用版本

pyenv local 2.7.12  //临时设置版本

#pyenv global 3.5.2  //设置全局python版本 慎用

安装Python

安装Python 3.5.2   pyenv install 3.5.2

wget http://7d9qvq.com1.z0.glb.clouddn.com/Python-3.5.2.tgz

网速慢下载下来 放在  cd ~/.pyenv/    mkdir cache  cd cache  mv Python-3.3.5.tgz Python-3.3.5.tgz.gz

使用pyenv

local命令切换当前目录及其子目录的Python版本, 可以通过删除 .python-version恢复默认Python版本

global命令

global名切换全局默认Python版本

永远不要使用global命令

virtualenv命令

创建虚拟环境 pyenv virtualenv $bash_version $name

uninstall命令

卸载某个版本, 包括虚拟环境

ipython安装

设置使用阿里镜像

mkdir ~/.pip/

vim ~/.pip/pip.conf

[global]

index-url = http://mirrors.aliyun.com/pypi/simple/

trusted-host = mirrors.aliyun.com

pip install ipython

ipython 进入ipython

jupyter安装

pip install jupyter

启动juoyter  jupyter notebook --ip=0.0.0.0 --no-browser

在浏览器中打开 http://192.168.1.81:8888/tree

时间: 2024-10-08 12:59:51

pyenv ipython jupyter的相关文章

Ipython\Jupyter数据分析工具

使用Python进行数据分析优点 1 Python大量的库为数据分析和处理提供了完整的工具集 2 比起R和Matlab等其他主要用于数据分析的编程语言,Python更全能 3 Python库一直在增加,算法的实现采用更具有创新性的方法 4 Python能和很多语言对接,例如高效的C语言 Ipython介绍 Ipython是一个性能强大的终端(终端有一个特点,写一行执行一行). PyCharm也是一个终端(代码从上至下执行,如果代码量大不利于调试). Ipython是以浏览器的方式呈现: Ipyt

IPython notebook详细安装教程

IPython从4.0开始,为了项目的独立运行,便将notebook等一系列附加组件迁移至jupyter中,从而使得IPython专注于交互式python这一功能.让我们来看看官网上的解释: “IPython is a growing project, with increasingly language-agnostic components. IPython 3.x was the last monolithic release of IPython, containing the note

远程连接服务器jupyter notebook、浏览器以及深度学习可视化方法

h1 { counter-reset: h2counter; } h2 { counter-reset: h3counter; } h3 { counter-reset: h4counter; } h4 { counter-reset: h5counter; } h5 { counter-reset: h6counter; } h6 { } h2:before { counter-increment: h2counter; content: counter(h2counter) ".\0000a

ipython与sublime调用其shell出现的问题

本机电脑 win10 已安装python3.5 1.    直接在命令行运行 pip install ipython[all] 安装 ipython 安装完成后 在命令行输入 jupyter notebook 即可看到浏览器中的ipython notebook 界面 2. 然后在sunlime3的preferences < key building<中的user 编辑界面中设置了ipython shell的快捷键 { "keys": ["f6"], &q

Linux下安装jupyter

又是美好的一天     开开心心写代码 1. 安装ipython, jupyter pip install ipython pip install jupyter 2. 生成配置文件[[email protected] /]# jupyter notebook --generate-config Writing default config to: /root/.jupyter/jupyter_notebook_config.py 3. 生成密码[email protected] /]# ipy

Centos7安装 Anaconda + jupyter notebook

一.安装Anaconda 1 下载Anaconda安装脚本 为了避免漫长的等待,镜像源选择国内的清华镜像源,镜像源地址:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ 我选择最新版本5.3.1,执行如下命令下载: wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-5.3.1-Linux-x86_64.sh 2 安装可能依赖 yum -y group

jupyter server

[TOC] 首先确认是否安装有python2和3 使用 $ which python2 , $ which python3 查看,一般会返回 /usr/bin/python2 , /usr/bin/python3 ,如果没有,那么就用 $ sudo apt-get install python2 来安装 安装pip,ipython,jupyter sudo apt-get install python-pip安装python2版本的pip sudo -H pip install --upgrad

python环境准备

环境准备: 可以使用linux操作系统或者mac系统,windows上也可以使用. python各个版本下载地址: https://www.python.org/downloads/ 可以根据自己的系统来选择对应的下载包. IDE & editor python比较好用的IDE是Pycharm,目前已经是5.0.4版本,推荐给大家使用,分为社区版和专业版,专业版是收费的. python版本选择 推荐使用3.4.x以上的版本,虽然很多模块在python2版本上比较稳定,相对支持的库也比较多,但是p

hyper-v中搭建本地服务器linux(CentOS 7)的python环境

新建虚拟机->安装CentOS7->新建虚拟交换机:内部网络->CentOS7设置->网络适配器:虚拟交换机:新建虚拟交换机->进入CentOS # cd /etc/sysconfig/network-scripts/ # ls # vi ifcfg-eth0 添加或修改 ONBOOT=yes 保存退出(按ESC再:wq回车) windows中本地网络连接将以太网与vEthernet桥接 # service network restart 进路由器设置给linux分配静态IP