Jupyter Notebook使用Anaconda虚拟环境
Jupyter Notebook使用Anaconda虚拟环境
第一步:安装ipykernel: 法一: 1.进入虚拟环境
Windows:在Anaconda Prompt, 运行 activate myenv macOS & Linux, 在Terminal, 运行 source activate myenv 安装ipykernel:conda install ipykernel 法二: 在任何环境下都可以直接运行conda install -n myenv ipykernel为myenv安装ipykernel
第二步:将环境写入notebook的kernel中 首先要保证在当前虚拟环境下,进入虚拟环境的过程如第一步的法一。 运行python -m ipykernel install –user –name=myenv 将环境写入notebook的kernel中
生成配置文件:
|
|
生成密码
输入ipython后
|
|
修改配置文件
|
|
启动
|
|
如果要输出图形,请安装
|
|
# backtrader兼容性问题
pip uninstall matplotlib
pip install matplotlib==3.2.2
conda activate py3
nohup jupyter notebook –port=8890 –allow-root > /root/jupyternotebook.log 2>&1 &
conda activate py3
nohup jupyter notebook --port=8890 --allow-root --NotebookApp.terminals_enabled=False > /root/jupyternotebook.log 2>&1 &
# 禁用控制台命令行
--NotebookApp.terminals_enabled=False
xeus-cling 安装
conda create -n xeus-cling python=3.6
conda activate xeus-cling
conda install -c conda-forge xeus-cling
Anaconda3的安装路径下的/envs/xeus-cling/share/jupyter/kernels/下
jupyter kernelspec install PREFIX/share/jupyter/xcpp11 --sys-prefix
jupyter kernelspec install PREFIX/share/jupyter/xcpp14 --sys-prefix
jupyter kernelspec install PREFIX/share/jupyter/xcpp17 --sys-prefix
jupyter kernelspec install /root/anaconda3/envs/xeus-cling/share/jupyter/kernels/xcpp11 --sys-prefix
jupyter kernelspec install /root/anaconda3/envs/xeus-cling/share/jupyter/kernels/xcpp14 --sys-prefix
jupyter kernelspec install /root/anaconda3/envs/xeus-cling/share/jupyter/kernels/xcpp17 --sys-prefix
/root/anaconda3/envs/xeus-cling/share/jupyter/kernels
firewall-cmd --zone=public --add-port=8891/tcp --permanent
firewall-cmd --reload
conda activate xeus-cling
nohup jupyter notebook --port=8891 --allow-root --NotebookApp.terminals_enabled=True > /root/jupyternotebookc.log 2>&1 &
cmake 安装
yum install -y gcc gcc-c++ make automake
sh cmake-3.21.1-linux-x86_64.sh –prefix=/usr/local –exclude-subdir
yum install -y openssl openssl-devel
cd finarthur-master
mkdir build
cd build
cmake ..
make
低延时调优文章
https://zhuanlan.zhihu.com/p/59242346
安装 openonload
## 进入相应的文件夹
cd openonload-201811/
## 源代码存放
cd scripts/
## 搭建环境
./onload_build
## 执行安装
./onload_install
#加载 onload
onload_tool reload
## 停止 cpuspeed 服务以避免进入省电模式,降低CPU时钟速度
systemctl stop cpuspeed
## 停止 irqbalance 服务器以防止 OS 在可用的CPU内核之间重新平衡中断
systemctl stop irqbalance
## 停止防火墙辐射器以消除简介消耗
systemctl stop firewalld
## 禁用 interrupt moderation
ethtool -C enp1s0f1 rx-usecs-irq 0 adaptive-rx off
## 启动低延时配置:tuned-adm
tuned-adm list
tuned-adm profile network-latency
## 防止系统进入 CPU 低功耗模式 cstates
## 参考博文: https://williamlfang.github.io/post/2019-12-11-linux-调整-cstate-实现cpu超频/
- 原文作者:码魂
- 原文链接:http://blog.lazy.icu/2021/08/04/jupyternotebook-use-anaconda-env/
- 版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. 进行许可,非商业转载请注明出处(作者,原文链接),商业转载请联系作者获得授权。