zhihu_spider/env.py

16 lines
449 B
Python
Raw Permalink Normal View History

2023-07-03 05:26:30 +00:00
import os
import shutil
abspath = os.path.abspath(__file__)
filename = abspath.split(os.sep)[-1]
abspath = abspath.replace(filename, "")
def to_setting():
userhome = os.path.expanduser("~")
shutil.copyfile(os.path.join(abspath, "msedgedriver", ".condarc"), \
userhome)
os.system("")
os.system("conda clean -i; Y;")
os.system("cd %s; pip install -r requirement.txt"%(abspath, ))
if __name__=="__main__":
to_setting()