python3环境安装
Homebrew 安装
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
pyhon3 安装
brew install python3
安装好后
python3
进入python3命令行模式-
安装mongodb
brew install mongodb
brew services start mongodb
启动mongodb 并让它跟随系统一起启动。- 开始访问 mongodb ?
mongod
注意这里不是mongodb -
安装redis
brew install redis
brew services start redis
启动redis 并让它跟随系统一起启动。redis-cli
进入redis的命令行模式。
redis 中其他命令:set ‘name’ ‘Feilong’
,get ‘name’
redis配置文件地址: usr/local/etc/redis.conf
约 69行
bind 127.0.0.1
通过#号注释掉,就可以远程访问。- 搜索 requirepass 约500行
# requirepass foobared
取消注释(去掉前面的 # )。 brew services restart redis
重启 redis。重新进入redis交互模式
redis-cli -a foobared
安装mysql
brew install mysql
brew services start mysql
启动mysql并让它跟随系统启动mysql -u root -p
输入密码后,进入MYSQL命令行模式。Nihao52consPython多版本共存配置
echo $PATH
输出环境变量which is python3
或者where is python3
查找python3路径。
直接输入python或者python3路径可以直接进入python或者python3的命令行模式ln -s <源文件目录> <链接名称,一般放在目录/usr/bin/,所以这里写/usr/bin/python3>
所以 写好后就是ln -s /usr/bin/python2.6 /usr/bin/python2
Python爬虫常用库的安装
pip3 install requests selenium beautifulsoup4 pyquery pymysql pymongo redis flask django jupyter
Python 工具教程
git 简明指南
http://rogerdudler.github.io/git-guide/index.zh.html
pythonanywhere
https://zhuanlan.zhihu.com/p/24650061
python新建web服务传文件
https://www.zhihu.com/question/55283756/answer/144541673