安装python工具

安装python编写工具

本篇幅只限于安装linux系统上。

想要实现linux程序在windows桌面上打开,需要在linux上打开X11forward和在windows上安装Xmanager

IDEA

我目前使用idea-IC版,有钱的话,请支持IU版

~]# tar xf ideaIC-2018.1.6.tar.gz
下面添加别名,只是想命令简单启动服务
~]# echo "alias idea='nohup /home/kuchan/idea/idea-IC-181.5540.7/bin/idea.sh &'" >> ~/.bashrc 
读取变量
~]# source ~/.bashrc
启动服务
~]# idea 

新安装的idea没有python插件,需要手动添加。

jupyter更适合练习

[root@6 exer]# pyenv versions
  system
* 3.5.2 (set by /home/kuchan/exer/.python-version)
  3.5.2/envs/env352
  env352
安装jupyter
~]# pip install jupyter 
添加别名,方便启动
~]# echo "alias jupyters='nohup jupyter notebook --ip=0.0.0.0 --allow-root &'" >> ~/.bashrc
~]# jupyters

原文地址:https://www.cnblogs.com/dance-walter/p/9373383.html