CentOS 7.3 自带的 Python 版本只有 2.7.5
,很多新鲜的包都不能正常使用,一怒之下尝试更新其至目前最新的 2.7.13
版本,顺便编译最新的 Python 3.6.2。当然系统自带的 Python 2.7.5 是不能删除的,会导致很多依赖它的工具无法正常工作,所以将新版本的 Python 安装至 /usr/local/
下。
Linux 技巧拾零
记录 Linux 下遇到的问题、技巧与备忘。
「转」CentOS 系统安装 GCC
链接: How To Install GCC on CentOS 6
日期: Published on: Tue, Apr 28, 2015 at 1:02 am EST
CentOS follows the development of Red Hat Enterprise Linux (RHEL). RHEL strives to be a stable server platform, which means that it does not rush to include the latest versions of every software package.
「转」CentOS 系统安装 LLVM 以及 Clang
链接: How To Install LLVM and Clang on CentOS 6
日期: Wed, May 13, 2015 at 3:22 am EST
LLVM is an open-source compiler infrastructure. LLVM was started in 2000, and has been extensively used and modified by Apple since 2005. Clang is a C, C++, Objective-C, and Objective-C++ compiler that works with the LLVM system. Clang was started in 2007 by Apple, and since then Google and Intel have become involved in its continued development.
Windows 下安装 Anaconda3 产生的快捷方式
部分情况下,一些 Windows 机器安装完 Anaconda 之后不会出现快捷方式,而其快捷方式较为复杂,故记录之。
用户名为 Michael
,Anaconda3 安装目录为 D:\Anaconda3
,若安装于其它目录,作相应修改即可。
「转」Shell 脚本中的颜色
Shell scripts commonly used ANSI escape codes for color output. Following table shows Numbers representing colors in Escape Sequences.
安装 Zsh
试验场所有 CentOS(本地 + 远程),Ubuntu 14.04+,MSYS2(比较卡,应该是 mintty 的原因,不打算继续折腾)。
安装 Zsh
1 | yum install zsh |
安装 Oh-My-Zsh
官方 repo
1 | sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" |
或
1 | sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)" |
详情请见 oh-my-zsh 的 wiki。
单用户 Jupyter Notebook 服务器环境搭建
被朋友强烈安利入坑 TensorFlow,于是着手搭建 Python 的工作环境。之前在 Windows 下使用过 Anaconda,不仅能愉快地切换 Python 2.x 与 3.x 环境,还能像应用容器一样安装其他软件(RStudio,Spyder)等。但如此一来自身体积逐渐增大,于是考虑在装载 CentOS 7.3 系统的老爷机上搭建 Anaconda 环境,并部署 Jupyter Notebook 服务器。本文搭建的环境仅允许单用户访问,如需要多用户,需使用 JupyterHub。这里的初始参考来源是 Jupyter Notebook 的官方文档。