Python web.py怎么安装Mysql数据库?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python web.py怎么安装Mysql数据库?相关的知识,希望对你有一定的参考价值。
在win10下,用的Pycharm,请问Python怎么安装mysql数据库并且可以连接web.py呢?
参考技术A 1.环境搭建。环境搭建比较繁琐,记得当时也是满世界找资料,所以我直接打包好了所有的文件(apache(已经放进去python-wscgi)+web.py+apache所需要的vs2010运行库+python+网站文件),直接解压放上去就能用。有需要同学让我传一个或者网盘发一把就行。如果在windows,最好在win7以上版本,我用win8。linux则ubuntu较好,建议12.04以上版本,不过linux我仅仅是开发用过,最终运行的服务器是采用windows+apache:安装python2.7.10,可以去官方网站下载,注意要把python路径加入系统环境变量。版本不能低于2.7.9,但不能用3.0以上,web.py支持不好。安装web.py,官方网下载来装就行,记得是解压后进去:pythonsetup.pyinstall安装wingIDE,这个是最好用的python编辑器,可惜只能有几天试用,我就是不停的试用进行开发,用它的好处就是代码可以跳转并且支持调试,需要调试直接将程序文件run起来,单步下段点都可以。装apache并配置python-wscgi,这个比较惨,花了好多时间去搜索才搞定,主要是windows上的python-wscgi不好难找。为了节省以后的开发时间,我把配置好的apache给打包了,反正也是绿色的,新建网站只需要在服务器上配置开机启动apache,并在apache的config里面修改下自己网站路径就行。2.开发。开发阶段倒是没什么好说的,web.py官方有教程,不过这里我需要提几点建议:如果可以务必全站用utf-8编码。建立数据库建议写个生成脚本,比如createDataBase.py,有改动重新运行一遍,不要试用ide去建。追问你写的什么玩意,不要复制粘贴好吗?看下问题。。
安装 web3.py 时出错。 “python setup.py egg_info”
【中文标题】安装 web3.py 时出错。 “python setup.py egg_info”【英文标题】:Error while Install web3.py. "python setup.py egg_info" 【发布时间】:2021-11-04 00:18:47 【问题描述】:我正在尝试安装 web3.py (pip install web3) 并收到此错误: “python setup.py egg_info”失败。
如何解决这个问题并安装 web3.py?
ERROR: Command errored out with exit status 1:
command: 'C:\Users\onlyd\AppData\Local\Continuum\anaconda3\python.exe' -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\onlyd\\AppData\\Local\\Temp\\pip-install-ji347dtb\\pycryptodome\\setup.py'"'"'; __file__='"'"'C:\\Users\\onlyd\\AppData\\Local\\Temp\\pip-install-ji347dtb\\pycryptodome\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base pip-egg-info
cwd: C:\Users\onlyd\AppData\Local\Temp\pip-install-ji347dtb\pycryptodome\
Complete output (20 lines):
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\Users\onlyd\AppData\Local\Temp\pip-install-ji347dtb\pycryptodome\setup.py", line 468, in <module>
set_compiler_options(package_root, ext_modules)
File "C:\Users\onlyd\AppData\Local\Temp\pip-install-ji347dtb\pycryptodome\compiler_opt.py", line 341, in set_compiler_options
clang = compiler_is_clang()
File "C:\Users\onlyd\AppData\Local\Temp\pip-install-ji347dtb\pycryptodome\compiler_opt.py", line 251, in compiler_is_clang
return test_compilation(source, msg="clang")
File "C:\Users\onlyd\AppData\Local\Temp\pip-install-ji347dtb\pycryptodome\compiler_opt.py", line 82, in test_compilation
objects = compiler.compile([fname], extra_postargs=extra_cc_options)
File "C:\Users\onlyd\AppData\Local\Continuum\anaconda3\lib\distutils\_msvccompiler.py", line 346, in compile
self.initialize()
File "C:\Users\onlyd\AppData\Local\Continuum\anaconda3\lib\distutils\_msvccompiler.py", line 239, in initialize
vc_env = _get_vc_env(plat_spec)
File "C:\Users\onlyd\AppData\Local\Continuum\anaconda3\lib\site-packages\setuptools\msvc.py", line 316, in msvc14_get_vc_env
return _msvc14_get_vc_env(plat_spec)
File "C:\Users\onlyd\AppData\Local\Continuum\anaconda3\lib\site-packages\setuptools\msvc.py", line 271, in _msvc14_get_vc_env
"Unable to find vcvarsall.bat"
distutils.errors.DistutilsPlatformError: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/
Testing support for clang
----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
【问题讨论】:
【参考方案1】:请参阅:需要 Microsoft Visual C++ 14.0 或更高版本。使用“Microsoft C++ Build Tools”获取它:https://visualstudio.microsoft.com/visual-cpp-build-tools/
您需要一个 C 编译器来安装 web3.py 正在使用的依赖项。
【讨论】:
以上是关于Python web.py怎么安装Mysql数据库?的主要内容,如果未能解决你的问题,请参考以下文章