系统版本CentOS7.2

1.安装python

rpm -qa | grep python   #卸载了之前的python34
yum -y install python 36

2.1安装pip

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py

2.2 修改pip配置文件

pip3报错

Traceback (most recent call last):File "/bin/pip3", line 7, in <module>from pip import main

更正pip的启动文件内容如下

[root@dxt-cls1-41-217 22:08:33 ~]# cat /bin/pip3
#!/bin/python3# -*- coding: utf-8 -*-
import re
import sys#from pip import main
from pip import __main__   #修改为这个if __name__ == '__main__':sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
#    sys.exit(main())sys.exit(__main__._main())  #修改为这个

uwsgi完整报错信息

pip3 install uwsgi
Collecting uwsgiUsing cached https://files.pythonhosted.org/packages/e7/1e/3dcca007f974fe4eb369bf1b8629d5e342bb3055e2001b2e5340aaefae7a/uwsgi-2.0.18.tar.gz
Building wheels for collected packages: uwsgiBuilding wheel for uwsgi (setup.py) ... errorERROR: Complete output from command /bin/python3 -u -c 'import setuptools, tokenize;__file__='"'"'/tmp/pip-install-0t53yex7/uwsgi/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /tmp/pip-wheel-iy0s7zal --python-tag cp36:ERROR: /usr/lib64/python3.6/distutils/dist.py:261: UserWarning: Unknown distribution option: 'descriptions'warnings.warn(msg)running bdist_wheelrunning buildrunning build_pycreating buildcreating build/libcopying uwsgidecorators.py -> build/libinstalling to build/bdist.linux-x86_64/wheelrunning installusing profile: buildconf/default.inidetected include path: ['/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include', '/usr/local/include', '/usr/include']Patching "bin_name" to properly install_scripts dirdetected CPU cores: 8configured CFLAGS: -O2 -I. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-format -Wno-format-security -DUWSGI_HAS_IFADDRS -DUWSGI_ZLIB -DUWSGI_LOCK_USE_MUTEX -DUWSGI_EVENT_USE_EPOLL -DUWSGI_EVENT_TIMER_USE_TIMERFD -DUWSGI_EVENT_FILEMONITOR_USE_INOTIFY  -DUWSGI_PCRE -DUWSGI_ROUTING -DUWSGI_VERSION="\"2.0.18\"" -DUWSGI_VERSION_BASE="2" -DUWSGI_VERSION_MAJOR="0" -DUWSGI_VERSION_MINOR="18" -DUWSGI_VERSION_REVISION="0" -DUWSGI_VERSION_CUSTOM="\"\"" -DUWSGI_YAML -DUWSGI_SSL -DUWSGI_XML -DUWSGI_XML_EXPAT -DUWSGI_PLUGIN_DIR="\".\"" -DUWSGI_DECLARE_EMBEDDED_PLUGINS="UDEP(python);UDEP(gevent);UDEP(ping);UDEP(cache);UDEP(nagios);UDEP(rrdtool);UDEP(carbon);UDEP(rpc);UDEP(corerouter);UDEP(fastrouter);UDEP(http);UDEP(ugreen);UDEP(signal);UDEP(syslog);UDEP(rsyslog);UDEP(logsocket);UDEP(router_uwsgi);UDEP(router_redirect);UDEP(router_basicauth);UDEP(zergpool);UDEP(redislog);UDEP(mongodblog);UDEP(router_rewrite);UDEP(router_http);UDEP(logfile);UDEP(router_cache);UDEP(rawrouter);UDEP(router_static);UDEP(sslrouter);UDEP(spooler);UDEP(cheaper_busyness);UDEP(symcall);UDEP(transformation_tofile);UDEP(transformation_gzip);UDEP(transformation_chunked);UDEP(transformation_offload);UDEP(router_memcached);UDEP(router_redis);UDEP(router_hash);UDEP(router_expires);UDEP(router_metrics);UDEP(transformation_template);UDEP(stats_pusher_socket);" -DUWSGI_LOAD_EMBEDDED_PLUGINS="ULEP(python);ULEP(gevent);ULEP(ping);ULEP(cache);ULEP(nagios);ULEP(rrdtool);ULEP(carbon);ULEP(rpc);ULEP(corerouter);ULEP(fastrouter);ULEP(http);ULEP(ugreen);ULEP(signal);ULEP(syslog);ULEP(rsyslog);ULEP(logsocket);ULEP(router_uwsgi);ULEP(router_redirect);ULEP(router_basicauth);ULEP(zergpool);ULEP(redislog);ULEP(mongodblog);ULEP(router_rewrite);ULEP(router_http);ULEP(logfile);ULEP(router_cache);ULEP(rawrouter);ULEP(router_static);ULEP(sslrouter);ULEP(spooler);ULEP(cheaper_busyness);ULEP(symcall);ULEP(transformation_tofile);ULEP(transformation_gzip);ULEP(transformation_chunked);ULEP(transformation_offload);ULEP(router_memcached);ULEP(router_redis);ULEP(router_hash);ULEP(router_expires);ULEP(router_metrics);ULEP(transformation_template);ULEP(stats_pusher_socket);"*** uWSGI compiling server core ***[thread 2][gcc -pthread] core/utils.o[thread 4][gcc -pthread] core/protocol.o[thread 6][gcc -pthread] core/socket.o[thread 5][gcc -pthread] core/logging.o[thread 7][gcc -pthread] core/master.o[thread 3][gcc -pthread] core/master_utils.o[thread 0][gcc -pthread] core/emperor.o[thread 1][gcc -pthread] core/notify.o[thread 1][gcc -pthread] core/mule.o[thread 4][gcc -pthread] core/subscription.o[thread 7][gcc -pthread] core/stats.o[thread 3][gcc -pthread] core/sendfile.o[thread 3][gcc -pthread] core/async.o[thread 1][gcc -pthread] core/master_checks.o[thread 5][gcc -pthread] core/fifo.o[thread 7][gcc -pthread] core/offload.o[thread 3][gcc -pthread] core/io.o[thread 6][gcc -pthread] core/static.o[thread 4][gcc -pthread] core/websockets.o[thread 1][gcc -pthread] core/spooler.o[thread 5][gcc -pthread] core/snmp.o[thread 0][gcc -pthread] core/exceptions.o[thread 2][gcc -pthread] core/config.o[thread 5][gcc -pthread] core/setup_utils.o[thread 7][gcc -pthread] core/clock.o[thread 1][gcc -pthread] core/init.o[thread 3][gcc -pthread] core/buffer.o[thread 4][gcc -pthread] core/reader.o[thread 6][gcc -pthread] core/writer.o[thread 5][gcc -pthread] core/alarm.o[thread 0][gcc -pthread] core/cron.o[thread 2][gcc -pthread] core/hooks.o[thread 7][gcc -pthread] core/plugins.o[thread 1][gcc -pthread] core/lock.o[thread 3][gcc -pthread] core/cache.o[thread 6][gcc -pthread] core/daemons.o[thread 0][gcc -pthread] core/errors.o[thread 1][gcc -pthread] core/hash.o[thread 5][gcc -pthread] core/master_events.o[thread 4][gcc -pthread] core/chunked.o[thread 2][gcc -pthread] core/queue.o[thread 7][gcc -pthread] core/event.o[thread 1][gcc -pthread] core/signal.o[thread 6][gcc -pthread] core/strings.o[thread 4][gcc -pthread] core/progress.o[thread 0][gcc -pthread] core/timebomb.o[thread 5][gcc -pthread] core/ini.o[thread 2][gcc -pthread] core/fsmon.o[thread 4][gcc -pthread] core/mount.o[thread 1][gcc -pthread] core/metrics.o[thread 7][gcc -pthread] core/plugins_builder.o[thread 3][gcc -pthread] core/sharedarea.o[thread 0][gcc -pthread] core/rpc.o[thread 6][gcc -pthread] core/gateway.o[thread 4][gcc -pthread] core/loop.o[thread 5][gcc -pthread] core/cookie.o[thread 2][gcc -pthread] core/querystring.o[thread 7][gcc -pthread] core/rb_timers.o[thread 4][gcc -pthread] core/transformations.o[thread 3][gcc -pthread] core/uwsgi.o[thread 0][gcc -pthread] proto/base.o[thread 6][gcc -pthread] proto/uwsgi.o[thread 7][gcc -pthread] proto/http.o[thread 2][gcc -pthread] proto/fastcgi.o[thread 5][gcc -pthread] proto/scgi.o[thread 4][gcc -pthread] proto/puwsgi.o[thread 1][gcc -pthread] lib/linux_ns.o[thread 6][gcc -pthread] core/zlib.o[thread 4][gcc -pthread] core/regexp.o[thread 5][gcc -pthread] core/routing.o[thread 1][gcc -pthread] core/yaml.o[thread 0][gcc -pthread] core/ssl.o[thread 2][gcc -pthread] core/legion.o[thread 7][gcc -pthread] core/xmlconf.o[thread 4][gcc -pthread] core/dot_h.o[thread 4][gcc -pthread] core/config_py.o*** uWSGI compiling embedded plugins ***[thread 4][gcc -pthread] plugins/python/python_plugin.o[thread 1][gcc -pthread] plugins/python/pyutils.o[thread 6][gcc -pthread] plugins/python/pyloader.o[thread 7][gcc -pthread] plugins/python/wsgi_handlers.oIn file included from plugins/python/pyutils.c:1:0:plugins/python/uwsgi_python.h:2:20: fatal error: Python.h: No such file or directory#include <Python.h>^compilation terminated.In file included from plugins/python/python_plugin.c:1:0:plugins/python/uwsgi_python.h:2:20: fatal error: Python.h: No such file or directory#include <Python.h>^compilation terminated.In file included from plugins/python/wsgi_handlers.c:1:0:plugins/python/uwsgi_python.h:2:20: fatal error: Python.h: No such file or directory#include <Python.h>^compilation terminated.In file included from plugins/python/pyloader.c:1:0:plugins/python/uwsgi_python.h:2:20: fatal error: Python.h: No such file or directory#include <Python.h>^compilation terminated.[thread 0][gcc -pthread] plugins/python/wsgi_headers.oIn file included from plugins/python/wsgi_headers.c:1:0:plugins/python/uwsgi_python.h:2:20: fatal error: Python.h: No such file or directory#include <Python.h>^compilation terminated.----------------------------------------ERROR: Failed building wheel for uwsgiRunning setup.py clean for uwsgi
Failed to build uwsgi
Installing collected packages: uwsgiRunning setup.py install for uwsgi ... errorERROR: Complete output from command /bin/python3 -u -c 'import setuptools, tokenize;__file__='"'"'/tmp/pip-install-0t53yex7/uwsgi/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /tmp/pip-record-6wwguquc/install-record.txt --single-version-externally-managed --compile:ERROR: /usr/lib64/python3.6/distutils/dist.py:261: UserWarning: Unknown distribution option: 'descriptions'warnings.warn(msg)running installusing profile: buildconf/default.inidetected include path: ['/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include', '/usr/local/include', '/usr/include']Patching "bin_name" to properly install_scripts dirdetected CPU cores: 8configured CFLAGS: -O2 -I. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wno-format -Wno-format-security -DUWSGI_HAS_IFADDRS -DUWSGI_ZLIB -DUWSGI_LOCK_USE_MUTEX -DUWSGI_EVENT_USE_EPOLL -DUWSGI_EVENT_TIMER_USE_TIMERFD -DUWSGI_EVENT_FILEMONITOR_USE_INOTIFY  -DUWSGI_PCRE -DUWSGI_ROUTING -DUWSGI_VERSION="\"2.0.18\"" -DUWSGI_VERSION_BASE="2" -DUWSGI_VERSION_MAJOR="0" -DUWSGI_VERSION_MINOR="18" -DUWSGI_VERSION_REVISION="0" -DUWSGI_VERSION_CUSTOM="\"\"" -DUWSGI_YAML -DUWSGI_SSL -DUWSGI_XML -DUWSGI_XML_EXPAT -DUWSGI_PLUGIN_DIR="\".\"" -DUWSGI_DECLARE_EMBEDDED_PLUGINS="UDEP(python);UDEP(gevent);UDEP(ping);UDEP(cache);UDEP(nagios);UDEP(rrdtool);UDEP(carbon);UDEP(rpc);UDEP(corerouter);UDEP(fastrouter);UDEP(http);UDEP(ugreen);UDEP(signal);UDEP(syslog);UDEP(rsyslog);UDEP(logsocket);UDEP(router_uwsgi);UDEP(router_redirect);UDEP(router_basicauth);UDEP(zergpool);UDEP(redislog);UDEP(mongodblog);UDEP(router_rewrite);UDEP(router_http);UDEP(logfile);UDEP(router_cache);UDEP(rawrouter);UDEP(router_static);UDEP(sslrouter);UDEP(spooler);UDEP(cheaper_busyness);UDEP(symcall);UDEP(transformation_tofile);UDEP(transformation_gzip);UDEP(transformation_chunked);UDEP(transformation_offload);UDEP(router_memcached);UDEP(router_redis);UDEP(router_hash);UDEP(router_expires);UDEP(router_metrics);UDEP(transformation_template);UDEP(stats_pusher_socket);" -DUWSGI_LOAD_EMBEDDED_PLUGINS="ULEP(python);ULEP(gevent);ULEP(ping);ULEP(cache);ULEP(nagios);ULEP(rrdtool);ULEP(carbon);ULEP(rpc);ULEP(corerouter);ULEP(fastrouter);ULEP(http);ULEP(ugreen);ULEP(signal);ULEP(syslog);ULEP(rsyslog);ULEP(logsocket);ULEP(router_uwsgi);ULEP(router_redirect);ULEP(router_basicauth);ULEP(zergpool);ULEP(redislog);ULEP(mongodblog);ULEP(router_rewrite);ULEP(router_http);ULEP(logfile);ULEP(router_cache);ULEP(rawrouter);ULEP(router_static);ULEP(sslrouter);ULEP(spooler);ULEP(cheaper_busyness);ULEP(symcall);ULEP(transformation_tofile);ULEP(transformation_gzip);ULEP(transformation_chunked);ULEP(transformation_offload);ULEP(router_memcached);ULEP(router_redis);ULEP(router_hash);ULEP(router_expires);ULEP(router_metrics);ULEP(transformation_template);ULEP(stats_pusher_socket);"core/utils.o is up to datecore/protocol.o is up to datecore/socket.o is up to datecore/logging.o is up to date*** uWSGI compiling server core ***core/master.o is up to datecore/master_utils.o is up to datecore/emperor.o is up to datecore/notify.o is up to datecore/mule.o is up to datecore/subscription.o is up to datecore/stats.o is up to datecore/sendfile.o is up to datecore/async.o is up to datecore/master_checks.o is up to datecore/fifo.o is up to datecore/offload.o is up to datecore/io.o is up to datecore/static.o is up to datecore/websockets.o is up to datecore/spooler.o is up to datecore/snmp.o is up to datecore/exceptions.o is up to datecore/config.o is up to datecore/setup_utils.o is up to datecore/clock.o is up to datecore/init.o is up to datecore/buffer.o is up to datecore/reader.o is up to datecore/writer.o is up to datecore/alarm.o is up to datecore/cron.o is up to datecore/hooks.o is up to datecore/plugins.o is up to datecore/lock.o is up to datecore/cache.o is up to datecore/daemons.o is up to datecore/errors.o is up to datecore/hash.o is up to datecore/master_events.o is up to datecore/chunked.o is up to datecore/queue.o is up to datecore/event.o is up to datecore/signal.o is up to datecore/strings.o is up to datecore/progress.o is up to datecore/timebomb.o is up to datecore/ini.o is up to datecore/fsmon.o is up to datecore/mount.o is up to datecore/metrics.o is up to datecore/plugins_builder.o is up to datecore/sharedarea.o is up to datecore/rpc.o is up to datecore/gateway.o is up to datecore/loop.o is up to datecore/cookie.o is up to datecore/querystring.o is up to datecore/rb_timers.o is up to datecore/transformations.o is up to datecore/uwsgi.o is up to dateproto/base.o is up to dateproto/uwsgi.o is up to dateproto/http.o is up to dateproto/fastcgi.o is up to dateproto/scgi.o is up to dateproto/puwsgi.o is up to datelib/linux_ns.o is up to datecore/zlib.o is up to datecore/regexp.o is up to datecore/routing.o is up to datecore/yaml.o is up to datecore/ssl.o is up to datecore/legion.o is up to datecore/xmlconf.o is up to date[thread 3][gcc -pthread] core/dot_h.o[thread 1][gcc -pthread] core/config_py.o*** uWSGI compiling embedded plugins ***[thread 2][gcc -pthread] plugins/python/python_plugin.o[thread 0][gcc -pthread] plugins/python/pyutils.o[thread 4][gcc -pthread] plugins/python/pyloader.o[thread 6][gcc -pthread] plugins/python/wsgi_handlers.o[thread 5][gcc -pthread] plugins/python/wsgi_headers.o[thread 7][gcc -pthread] plugins/python/wsgi_subhandler.o[thread 1][gcc -pthread] plugins/python/web3_subhandler.o[thread 3][gcc -pthread] plugins/python/pump_subhandler.oIn file included from plugins/python/pyutils.c:1:0:plugins/python/uwsgi_python.h:2:20: fatal error: Python.h: No such file or directory#include <Python.h>^compilation terminated.In file included from plugins/python/wsgi_headers.c:1:0:plugins/python/uwsgi_python.h:2:20: fatal error: Python.h: No such file or directory#include <Python.h>^compilation terminated.In file included from plugins/python/wsgi_subhandler.c:1:0:plugins/python/uwsgi_python.h:2:20: fatal error: Python.h: No such file or directory#include <Python.h>^compilation terminated.In file included from plugins/python/web3_subhandler.c:1:0:plugins/python/uwsgi_python.h:2:20: fatal error: Python.h: No such file or directory#include <Python.h>^compilation terminated.In file included from plugins/python/python_plugin.c:1:0:plugins/python/uwsgi_python.h:2:20: fatal error: Python.h: No such file or directory#include <Python.h>^compilation terminated.In file included from plugins/python/pyloader.c:1:0:plugins/python/uwsgi_python.h:2:20: fatal error: Python.h: No such file or directory#include <Python.h>^compilation terminated.In file included from plugins/python/wsgi_handlers.c:1:0:plugins/python/uwsgi_python.h:2:20: fatal error: Python.h: No such file or directory#include <Python.h>^compilation terminated.In file included from plugins/python/pump_subhandler.c:1:0:plugins/python/uwsgi_python.h:2:20: fatal error: Python.h: No such file or directory#include <Python.h>^compilation terminated.----------------------------------------
ERROR: Command "/bin/python3 -u -c 'import setuptools, tokenize;__file__='"'"'/tmp/pip-install-0t53yex7/uwsgi/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /tmp/pip-record-6wwguquc/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-install-0t53yex7/uwsgi/

解决办法:

参考:yum install python-devel -y

参考:

  1. # yum install nginx python2-pip python-devel gcc openssl-devel libyaml-devel libffi-devel \   readline-devel zlib-devel gdbm-devel ncurses-devel gcc-c++ automake autoconf mysql-devel
  2. 参考链接http://blog.51yip.com/server/2141.html

使用原生wsgiref测试正常

git拉取代码或拷贝上传到项目目录git clone https://github.com/zenthought/wemonitor.git启动测试:python3 manage.py runserver 0.0.0.0:8081访问正常

使用supervisor管理进程

pip修改参考:

https://blog.csdn.net/lyll616/article/details/85090132

部署参考:https://blog.csdn.net/sinat_41898105/article/details/80897448

django线上环境配置相关推荐

  1. springboot 环境配置测试环境和线上环境配置

    第一种方式:都在中 application.yml配置,用  ---  隔开,这样可以表示独立的环境,用active引用 spring: profiles:active: test --- serve ...

  2. 微信小程序:本地开发环境和线上环境配置

    在开发微信小程序的时候,需要配置: 本地开发环境 体验预览环境 审核版环境 生产环境 为了简化环境配置,我只区分了两个环境 本地开发环境 生产环境/体验预览环境审核版环境生产环境 参考文档 基础 /系 ...

  3. node开发环境(mac)和线上环境(linux)搭建

    以前一直在做php后台,对node没有认真研究,现在前端发展速度这么快,再加上node的飞速发展,javascript统一中原指日可待啊.em~~,废话不多说开始开发环境和线上环境搭建吧,写一下自己的 ...

  4. 使用maven的profile区分本地环境和线上环境

    使用maven的profile区分本地环境和线上环境 多环境开发,使用maven-profile,就可以在打包的时候通过参数的调整,最终打的包也不同. 以区分本地数据库和线上数据库为例 比如测试环境, ...

  5. 【原创】线上环境 SYN flooding 问题排查

    问题描述:        线上环境中,公司自研即时通讯软件不定时掉线. 问题排查:        由运维和测试人员发现并报告,线上环境出现网络异常,具体表现为登录服务器虚拟 IP 地址无法 ping ...

  6. doctor mysql数据导入_线上环境mysql主从同步的搭建过程

    之前搭建过一套主从同步的mysql集群,但是是基于新数据库,而这次线上环境要升级成主从同步的集群,记录一下升级过程和中间遇到的各种问题. 由于是直接对线上数据库进行修改,因此要保证对线上环境造成尽量小 ...

  7. Keepalived+Nginx实现高可用,反向代理---模拟实现线上环境

    [前言] 在对Keepalived+Nginx进行了研究后,将这项技术推广上线,并配合运维进行网站搭建起来.经过一段时间的运行线上环境 运行已经稳定,不过自己还需要进行更加深入的研究:那么如何模拟线上 ...

  8. 生产环境和开发环境_环境部署:开发、测试和线上环境的区别

    点击蓝字 关注我们 软件开发环境(Software Development Environment,SDE)是指在基本硬件和宿主软件的基础上,为支持系统软件和应用软件的工程化开发和维护而使用的一组软件 ...

  9. html ico不显示,vue 项目线上环境 出现 favicon.ico 不显示 怎么办

    vue 项目线上环境 出现 favicon.ico 不显示 怎么办? 一直提示报错: GET HTTP: xxx.xxxx.xxx.xxx:8080/favicon.ico 404 (Not Foun ...

最新文章

  1. IT巨擎为何迷失互联网大潮
  2. 原创哈希数据导出算法
  3. 【Rsync + inotify】 实时同步远程服务器目录文件
  4. 在python函数中参数分类的详细教程
  5. g120变频器报7490怎么处理_西门子通讯profinet网络下怎么更换G120变频器等部件
  6. Eclipse Outline图标
  7. bash shell基础之三字符串测试及for循环
  8. Android之底部Dialog里面放EditText点击布局顶上去效果
  9. Android Studio使用说明
  10. 对51CTO的初步看法
  11. 移动研发 DevOps 落地实践
  12. rpm包安装mysql的弊端_rpm包安装mysql的常见问题
  13. 自动化测试神器 之 python unittest 断言
  14. 联想裁员:公司不是我的家
  15. 非诚勿扰:比舒淇更孤单的是谁?
  16. Report ZD600PSR028_1
  17. Android adb 环境变量配置的坑 adb 不是内部或外部命令
  18. 概括TTL、RS32、RS485特点及区别
  19. python中对字符串进行左、中、右对齐操作
  20. Jzoj3547 MEX

热门文章

  1. 服务器 战地4 无限载入,战地4卡在loading界面无限载入的解决方法_快吧单机游戏...
  2. excel 如何超链接到另一个工作薄下查找相同字符数据
  3. 汇承金融科技:开创多渠道资产与资金撮合融资服务模式
  4. 全球案例 | 一家有着百年历史的航空公司如何扩展和转型,推动航空业创新
  5. 如何开发一款用户体验优秀的语音交友app?
  6. 用Python爬取微信好友,原来他们是这样的人......
  7. 电脑PE系统无法进入,完整详细解决方案
  8. MongoDB设置账号密码
  9. MacOS-Mac开发和iOS开发的区别
  10. 一文教你学会使用GitHub!(附视频)