Jupyter beautification: https://www.cnblogs.com/dotnetcrazy/p/8760189.html
Win version of the installation is too simple to say, step by step is OK, this period of time the development environment is Linux, so also easy to install, and then send a text record, service the public bar
First of all, some net programmers are interested in, many people envy the interactive programming of Python (the benefits are needless to say, do not know can search under), in fact, with the help of Jupyter C # is also possible, first put a picture:
Interested can explore their own, and then have the opportunity to talk about the Integration Environment series: HTTPS://GITHUB.COM/ZABIRAUF/ICSHARP
step into the right:
Anaconda: https://www.anaconda.com/download/#linux
Official document : https://conda.io/docs/user-guide/install/linux.html
domestic Download : https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-5.2.0-Linux-x86_64.sh
# Run script bash./xxx.sh
sudo./anaconda3-5.2.0-linux-x86_64.sh
# There are a few places to agree with, General return to the default is to agree
Enter continue
Agree, he'll tell you where the installation is.
Installation complete, reminding you to add environment variables (Vscode can choose to install)
This is the pre-installation Python default environment
# Follow the prompts to add environment variables
echo ' Export path= '/home/dnt/anaconda3/bin: $PATH ' >> ~/.BASHRC
# Update
SOURCE ~/.BASHRC
This is the current environment variable file (remember that you need to set up, and now do not need to "vscode also need to set up a debug configuration, and now do not have to")
Open it, that's it.
# Add Anaconda to the Tsinghua University image ( lest you install things slowly later )
Conda Config--add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
# Set the channel address to be displayed when searching ( can not be set )
Conda Config--set show_channel_urls Yes
------------------------------------------------------
#说说卸载Anaconda
RM-RF ~/anaconda3 (Installation path)
rm-rf ~/.condarc ~/.conda ~/.continuum (hidden files, ctrl+h can be seen)
#记得删除刚才添加的环境变量
Export path= "/home/dnt/anaconda3/bin: $PATH"
Run notebook test:jupyter-notebook
Interactive programming has gone
Appendix :
To popularize the basic knowledge (for beginners to prevent pit):
Figure resolution :~ = = " /home/user name
AI---Anaconda for Linux (with the introduction of C # Interactive programming)