1 Star 0 Fork 104

小于号/WeiboSpider

forked from resolvewang/WeiboSpider 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
env.sh 512 Bytes
一键复制 编辑 原始数据 按行查看 历史
PROJ_DIR=`pwd`
VENV=${PROJ_DIR}/.env
PROJ_NAME=WeiboSpider
# if your python release is not anaconda or cpython, please change the code below
ANACONDA_EXISTS=`which conda`
if [ -e ${ANACONDA_EXISTS} ];then
conda install virtualenv -yq
else
pip3 install virtualenv -yq
fi
if [ ! -e ${VENV} ];then
virtualenv --prompt "(${PROJ_NAME})" ${VENV} -p python3
fi
source ${VENV}/bin/activate
export PYTHONPATH=${PROJ_DIR}
export PROJ_DIR
export PATH=${PATH}:${VENV}/bin
pip3 install -r requirements.txt
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/luodonggan/WeiboSpider.git
[email protected]:luodonggan/WeiboSpider.git
luodonggan
WeiboSpider
WeiboSpider
master

搜索帮助