惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

IT之家
IT之家
J
Java Code Geeks
小众软件
小众软件
Jina AI
Jina AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
Stack Overflow Blog
Stack Overflow Blog
Blog — PlanetScale
Blog — PlanetScale
C
Check Point Blog
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
腾讯CDC
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
量子位
M
MIT News - Artificial intelligence
Last Week in AI
Last Week in AI
L
LangChain Blog

博客园 - ZHK的博客

在IIS Express中配置和启动web site 在File Explorer的当前路径上直接打开VS Code windows 下运行angualr/material2 项目 vs2017中生成.Net Standard Libarary的Nuget Package 使用nginx 的反向代理 给 kibana加上basic的身份认证 Hyper-V 虚拟网络设置 docker for windows & dotnet core app 使用performance monitor 查看 每一个cpu core的cpu time Ubuntu 16 安装ElasticSearch Ubuntu 16 安装JDK1.8 Ubuntu 14 安装 .Net Core AngularJS2 + ASP.NET MVC项目 Visual Studio Code 调试 nodeJS 固定Table的头部和左边的列-在Knockout Js使用场景下 Jquery UI - DatePicker 在Dialog中无法自动隐藏的解决思路 Visual Studio Code + live-server编辑和浏览HTML网页 基于空项目模板创建使用Owin来host的WebApi项目 ABP源码分析四十七:ABP中的异常处理 ABP源码分析四十六:ABP ZERO中的Ldap模块
Ubuntu安装Python2.7,nodejs,Redis
ZHK的博客 · 2016-12-01 · via 博客园 - ZHK的博客

安装Python2.7

sudo add-apt-repository ppa:fkrull/deadsnakes-python2.7
sudo apt-get update
sudo apt-get install python2.7

$ sudo apt-get install python-pip

安装nodejs

sudo apt-get update
sudo apt-get install nodejs
sudo apt-get install npm

推荐如下安装方式

curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs

NPM镜像使用方法:
1.通过config命令
npm config set registry https://registry.npm.taobao.org
npm info underscore (如果上面配置正确这个命令会有字符串response)
2.命令行指定
npm --registry https://registry.npm.taobao.org info underscore
3.编辑 ~/.npmrc 加入下面内容
registry = https://registry.npm.taobao.org

root账号下运行Chrome

cd /opt/google/chrome

gedit google-chrome

安装Redis
$ wget http://download.redis.io/releases/redis-4.0.1.tar.gz


$ tar xzf redis-4.0.1.tar.gz


$ cd redis-4.0.1


$ make


Run Redis with:
$ src/redis-server 1>&2 2>/dev/null &


Run Redis Command
$ src/redis-cli