基于ubuntu14.04 干净的系统一步步遇到的坑记录下来;

怀着平静学习的心情,问题总的能解决的!

1. 首先看了下当前python版本

python --version
Python 2.7.6

2. 安装pip

  先更新源

 sudo apt-get updatesudo apt-get upgrade

  安装pip

  

 sudo apt-get install python-pip

  查看pip 版本

  pip -Vpip 1.5.4 from /usr/lib/python2.7/dist-packages (python 2.7)

3.  尝试安装tensorflow,本以为安装就这么简单完成了:

tyler@pc:/opt/work/lazyzoon$ pip install tensorflow
Downloading/unpacking tensorflowCould not find any downloads that satisfy the requirement tensorflow
Cleaning up...
No distributions at all found for tensorflow
Storing debug log for failure in /home/tyler/.pip/pip.log

现在开始报错了

 (1). 首先怀疑的是pip版本太低,想先升级pip版本

  tyler@pc:/opt/work/lazyzoon$ pip install pip -U
Downloading/unpacking pip from https://files.pythonhosted.org/packages/d8/f3/413bab4ff08e1fc4828dfc59996d721917df8e8583ea85385d51125dceff/pip-19.0.3-py2.py3-none-any.whl#sha256=bd812612bbd8ba84159d9ddc0266b7fbce712fc9bc98c82dee5750546ec8ec64Downloading pip-19.0.3-py2.py3-none-any.whl (1.4MB): 1.4MB downloaded
Installing collected packages: pipFound existing installation: pip 1.5.4Not uninstalling pip at /usr/lib/python2.7/dist-packages, owned by OSCan't roll back pip; was not uninstalled
Cleaning up...
Exception:
Traceback (most recent call last):File "/usr/lib/python2.7/dist-packages/pip/basecommand.py", line 122, in mainstatus = self.run(options, args)File "/usr/lib/python2.7/dist-packages/pip/commands/install.py", line 283, in runrequirement_set.install(install_options, global_options, root=options.root_path)File "/usr/lib/python2.7/dist-packages/pip/req.py", line 1436, in installrequirement.install(install_options, global_options, *args, **kwargs)File "/usr/lib/python2.7/dist-packages/pip/req.py", line 672, in installself.move_wheel_files(self.source_dir, root=root)File "/usr/lib/python2.7/dist-packages/pip/req.py", line 902, in move_wheel_filespycompile=self.pycompile,File "/usr/lib/python2.7/dist-packages/pip/wheel.py", line 206, in move_wheel_filesclobber(source, lib_dir, True)File "/usr/lib/python2.7/dist-packages/pip/wheel.py", line 193, in clobberos.makedirs(destsubdir)File "/usr/lib/python2.7/os.py", line 157, in makedirsmkdir(name, mode)
OSError: [Errno 13] Permission denied: '/usr/local/lib/python2.7/dist-packages/pip'Storing debug log for failure in /home/tyler/.pip/pip.log

  没办法,只能换种方法升级pip,各种google,百度,找到下面这种方法升级成功

  下载这个py脚本

wget https://bootstrap.pypa.io/get-pip.py  --no-check-certificate

  然后执行

sudo python get-pip.pytyler@pc:/opt/work/lazyzoon$ sudo python get-pip.py
DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7.
The directory '/home/tyler/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/home/tyler/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
Collecting pip
/tmp/tmp5OMysZ/pip.zip/pip/_vendor/urllib3/util/ssl_.py:354: SNIMissingWarning: An HTTPS request has been made, but the SNI (Server Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
/tmp/tmp5OMysZ/pip.zip/pip/_vendor/urllib3/util/ssl_.py:150: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
/tmp/tmp5OMysZ/pip.zip/pip/_vendor/urllib3/util/ssl_.py:150: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warningsDownloading https://files.pythonhosted.org/packages/d8/f3/413bab4ff08e1fc4828dfc59996d721917df8e8583ea85385d51125dceff/pip-19.0.3-py2.py3-none-any.whl (1.4MB)100% |████████████████████████████████| 1.4MB 3.0MB/s
Installing collected packages: pipFound existing installation: pip 1.5.4Uninstalling pip-1.5.4:Successfully uninstalled pip-1.5.4
Successfully installed pip-19.0.3

这样就安装成功了pip新版本

tyler@pc:/opt/work/lazyzoon$ pip -V
pip 19.0.3 from /usr/local/lib/python2.7/dist-packages/pip (python 2.7)

(2). 继续尝试安装tensorfolw,还是报错

sudo pip install tensorflowmarkdown 3.1 has requirement setuptools>=36, but you'll have setuptools 3.3 which is incompatible.
Installing collected packages: numpy, six, enum34, futures, grpcio, h5py, keras-applications, markdown, werkzeug, protobuf, absl-py, tensorboard, termcolor, gast, funcsigs, pbr, mock, tensorflow-estimator, backports.weakref, astor, keras-preprocessing, tensorflowFound existing installation: six 1.5.2
Cannot uninstall 'six'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.

然后发现我们本地还有python3 版本

tyler@pc:/opt/work/lazyzoon$ python3 -V
Python 3.4.3

想着把python也用新版本

为了保险起见,我把之前用python2.7安装的pip卸载了

sudo apt-get remove python-pip
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:libdbusmenu-gtk4 libqpdf13 python-chardet-whl python-coloramapython-colorama-whl python-distlib python-distlib-whl python-html5libpython-html5lib-whl python-pip-whl python-requests-whl python-setuptools-whlpython-six-whl python-urllib3-whl python-wheel
Use 'apt-get autoremove' to remove them.
The following packages will be REMOVED:python-pip
0 upgraded, 0 newly installed, 1 to remove and 3 not upgraded.
After this operation, 477 kB disk space will be freed.
Do you want to continue? [Y/n] Y
(Reading database ... 220957 files and directories currently installed.)
Removing python-pip (1.5.4-1ubuntu4) ...

但是我发现我卸载的好像是1.5.4版本,可能这个尝试是多余。。

不管三七二十一了,用python3继续安装

tyler@pc:/opt/work/lazyzoon$ sudo python3 get-pip.py
DEPRECATION: Python 3.4 support has been deprecated. pip 19.1 will be the last one supporting it. Please upgrade your Python as Python 3.4 won't be maintained after March 2019 (cf PEP 429).
The directory '/home/tyler/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/home/tyler/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
Collecting pipDownloading https://files.pythonhosted.org/packages/d8/f3/413bab4ff08e1fc4828dfc59996d721917df8e8583ea85385d51125dceff/pip-19.0.3-py2.py3-none-any.whl (1.4MB)100% |████████████████████████████████| 1.4MB 10.6MB/s
Collecting setuptoolsDownloading https://files.pythonhosted.org/packages/d1/6a/4b2fcefd2ea0868810e92d519dacac1ddc64a2e53ba9e3422c3b62b378a6/setuptools-40.8.0-py2.py3-none-any.whl (575kB)100% |████████████████████████████████| 583kB 12.5MB/s
Collecting wheelDownloading https://files.pythonhosted.org/packages/96/ba/a4702cbb6a3a485239fbe9525443446203f00771af9ac000fa3ef2788201/wheel-0.33.1-py2.py3-none-any.whl
Installing collected packages: pip, setuptools, wheel
Successfully installed pip-19.0.3 setuptools-40.8.0 wheel-0.33.1

也提示安装成功了

现在多了一个pip3,用pip3安装试试

sudo pip3 install tensorflowDEPRECATION: Python 3.4 support has been deprecated. pip 19.1 will be the last one supporting it. Please upgrade your Python as Python 3.4 won't be maintained after March 2019 (cf PEP 429).
The directory '/home/tyler/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/home/tyler/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
Collecting tensorflowDownloading https://files.pythonhosted.org/packages/37/f0/7b2fd5c7cddb3f7f11e7859850f543e19009761cdb965ed8bd98f66d60fd/tensorflow-1.13.1-cp34-cp34m-manylinux1_x86_64.whl (93.2MB)25% |████████▎                       | 24.1MB 91kB/s eta 0:12:37Exception:
Traceback (most recent call last):File "/usr/local/lib/python3.4/dist-packages/pip/_vendor/urllib3/response.py", line 360, in _error_catcheryieldFile "/usr/local/lib/python3.4/dist-packages/pip/_vendor/urllib3/response.py", line 442, in readdata = self._fp.read(amt)File "/usr/local/lib/python3.4/dist-packages/pip/_vendor/cachecontrol/filewrapper.py", line 62, in readdata = self.__fp.read(amt)File "/usr/lib/python3.4/http/client.py", line 529, in readreturn super(HTTPResponse, self).read(amt)File "/usr/lib/python3.4/http/client.py", line 568, in readinton = self.fp.readinto(b)File "/usr/lib/python3.4/socket.py", line 374, in readintoreturn self._sock.recv_into(b)File "/usr/lib/python3.4/ssl.py", line 769, in recv_intoreturn self.read(nbytes, buffer)File "/usr/lib/python3.4/ssl.py", line 641, in readv = self._sslobj.read(len, buffer)
socket.timeout: The read operation timed outDuring handling of the above exception, another exception occurred:Traceback (most recent call last):File "/usr/local/lib/python3.4/dist-packages/pip/_internal/cli/base_command.py", line 179, in mainstatus = self.run(options, args)File "/usr/local/lib/python3.4/dist-packages/pip/_internal/commands/install.py", line 315, in runresolver.resolve(requirement_set)File "/usr/local/lib/python3.4/dist-packages/pip/_internal/resolve.py", line 131, in resolveself._resolve_one(requirement_set, req)File "/usr/local/lib/python3.4/dist-packages/pip/_internal/resolve.py", line 294, in _resolve_oneabstract_dist = self._get_abstract_dist_for(req_to_install)File "/usr/local/lib/python3.4/dist-packages/pip/_internal/resolve.py", line 242, in _get_abstract_dist_forself.require_hashesFile "/usr/local/lib/python3.4/dist-packages/pip/_internal/operations/prepare.py", line 334, in prepare_linked_requirementprogress_bar=self.progress_barFile "/usr/local/lib/python3.4/dist-packages/pip/_internal/download.py", line 878, in unpack_urlprogress_bar=progress_barFile "/usr/local/lib/python3.4/dist-packages/pip/_internal/download.py", line 702, in unpack_http_urlprogress_bar)File "/usr/local/lib/python3.4/dist-packages/pip/_internal/download.py", line 946, in _download_http_url_download_url(resp, link, content_file, hashes, progress_bar)File "/usr/local/lib/python3.4/dist-packages/pip/_internal/download.py", line 639, in _download_urlhashes.check_against_chunks(downloaded_chunks)File "/usr/local/lib/python3.4/dist-packages/pip/_internal/utils/hashes.py", line 62, in check_against_chunksfor chunk in chunks:File "/usr/local/lib/python3.4/dist-packages/pip/_internal/download.py", line 607, in written_chunksfor chunk in chunks:File "/usr/local/lib/python3.4/dist-packages/pip/_internal/utils/ui.py", line 159, in iterfor x in it:File "/usr/local/lib/python3.4/dist-packages/pip/_internal/download.py", line 596, in resp_readdecode_content=False):File "/usr/local/lib/python3.4/dist-packages/pip/_vendor/urllib3/response.py", line 494, in streamdata = self.read(amt=amt, decode_content=decode_content)File "/usr/local/lib/python3.4/dist-packages/pip/_vendor/urllib3/response.py", line 459, in readraise IncompleteRead(self._fp_bytes_read, self.length_remaining)File "/usr/lib/python3.4/contextlib.py", line 77, in __exit__self.gen.throw(type, value, traceback)File "/usr/local/lib/python3.4/dist-packages/pip/_vendor/urllib3/response.py", line 365, in _error_catcherraise ReadTimeoutError(self._pool, None, 'Read timed out.')
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.

这个错误是网络不稳定导致的,再次执行结果还是报错:

tyler@pc:/opt/work/lazyzoon$ sudo pip3 install tensorflowInstalling collected packages: six, protobuf, astor, numpy, keras-preprocessing, termcolor, markdown, grpcio, absl-py, werkzeug, tensorboard, pbr, mock, tensorflow-estimator, h5py, keras-applications, gast, tensorflowFound existing installation: six 1.5.2
Cannot uninstall 'six'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.

好像是six模块的问题,需要更新安装

然后执行:

sudo pip install six --upgrade --target="/usr/local/lib/python3.4/dist-packages/"DEPRECATION: Python 3.4 support has been deprecated. pip 19.1 will be the last one supporting it. Please upgrade your Python as Python 3.4 won't be maintained after March 2019 (cf PEP 429).
The directory '/home/tyler/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/home/tyler/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
Collecting sixDownloading https://files.pythonhosted.org/packages/73/fb/00a976f728d0d1fecfe898238ce23f502a721c0ac0ecfedb80e0d88c64e9/six-1.12.0-py2.py3-none-any.whl
Installing collected packages: six
Successfully installed six-1.12.0

成功更新了six

继续尝试安装tensorflow,果然没让我失望,还是报错

sudo pip3 install tensorflowFile "/tmp/pip-install-s_yz77x6/numpy/numpy/distutils/command/build_src.py", line 165, in build_sourcesself.build_extension_sources(ext)File "/tmp/pip-install-s_yz77x6/numpy/numpy/distutils/command/build_src.py", line 322, in build_extension_sourcessources = self.generate_sources(sources, ext)File "/tmp/pip-install-s_yz77x6/numpy/numpy/distutils/command/build_src.py", line 375, in generate_sourcessource = func(extension, build_dir)File "numpy/core/setup.py", line 423, in generate_config_hmoredefs, ignored = cocache.check_types(config_cmd, ext, build_dir)File "numpy/core/setup.py", line 47, in check_typesout = check_types(*a, **kw)File "numpy/core/setup.py", line 281, in check_types"install {0}-dev|{0}-devel.".format(python))SystemError: Cannot compile 'Python.h'. Perhaps you need to install python-dev|python-devel.----------------------------------------
Command "/usr/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-s_yz77x6/numpy/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-bie5c7mf/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-install-s_yz77x6/numpy/

看着像是numpy模块问题,尝试更新numpy模块,然后又来一堆错误

tyler@pc:/opt/work/lazyzoon$ pip install numpyFile "/tmp/pip-install-5x9wvjol/numpy/numpy/distutils/command/build_src.py", line 322, in build_extension_sourcessources = self.generate_sources(sources, ext)File "/tmp/pip-install-5x9wvjol/numpy/numpy/distutils/command/build_src.py", line 375, in generate_sourcessource = func(extension, build_dir)File "numpy/core/setup.py", line 423, in generate_config_hmoredefs, ignored = cocache.check_types(config_cmd, ext, build_dir)File "numpy/core/setup.py", line 47, in check_typesout = check_types(*a, **kw)File "numpy/core/setup.py", line 281, in check_types"install {0}-dev|{0}-devel.".format(python))SystemError: Cannot compile 'Python.h'. Perhaps you need to install python-dev|python-devel.----------------------------------------
Command "/usr/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-5x9wvjol/numpy/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-571bsgcn/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-install-5x9wvjol/numpy/

看提示可能是需要安装 python-dev

那就安装呗,sudo apt-get install python-dev

安装成功了python-dev

回来继续安装numpy

结果,还是和上次一样的报错

思考了下,我现在用的pip3,对应的python也是python3了,应该要安装 sudo apt-get install python3-dev 才对,

安装 python3-dev,

sudo apt-get install python3-dev

安装成功后,继续执行

tyler@pc:/opt/work/lazyzoon$ sudo pip3 install numpy
DEPRECATION: Python 3.4 support has been deprecated. pip 19.1 will be the last one supporting it. Please upgrade your Python as Python 3.4 won't be maintained after March 2019 (cf PEP 429).
The directory '/home/tyler/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/home/tyler/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
Collecting numpy
Installing collected packages: numpy
Successfully installed numpy-1.16.2

果然成功了

最后执行:

sudo pip3 install tensorflowCollecting mock>=2.0.0 (from tensorflow-estimator<1.14.0rc0,>=1.13.0->tensorflow)Downloading https://files.pythonhosted.org/packages/e6/35/f187bdf23be87092bd0f1200d43d23076cee4d0dec109f195173fd3ebc79/mock-2.0.0-py2.py3-none-any.whl (56kB)100% |████████████████████████████████| 61kB 3.2MB/s
Collecting pbr>=0.11 (from mock>=2.0.0->tensorflow-estimator<1.14.0rc0,>=1.13.0->tensorflow)Downloading https://files.pythonhosted.org/packages/14/09/12fe9a14237a6b7e0ba3a8d6fcf254bf4b10ec56a0185f73d651145e9222/pbr-5.1.3-py2.py3-none-any.whl (107kB)100% |████████████████████████████████| 112kB 2.6MB/s
Installing collected packages: keras-preprocessing, werkzeug, absl-py, protobuf, grpcio, markdown, tensorboard, termcolor, gast, h5py, keras-applications, pbr, mock, tensorflow-estimator, tensorflowRunning setup.py install for absl-py ... doneRunning setup.py install for termcolor ... doneRunning setup.py install for gast ... done
Successfully installed absl-py-0.7.1 gast-0.2.2 grpcio-1.19.0 h5py-2.9.0 keras-applications-1.0.7 keras-preprocessing-1.0.9 markdown-3.0.1 mock-2.0.0 pbr-5.1.3 protobuf-3.7.0 tensorboard-1.13.1 tensorflow-1.13.1 tensorflow-estimator-1.13.0 termcolor-1.1.0 werkzeug-0.15.1

到此安装tensorflow成功。

转载于:https://www.cnblogs.com/lazyzoon/p/10603274.html

ubuntu14.04 安装tensorflow始末相关推荐

  1. ubuntu14.04安装tensorflow-gpu

    ubuntu14.04 安装anaconda+tensorflow-gpu版本 本电脑为cuda-8.0,cudnn-6.0.21,安装tensorflow-gpu=1.3.0 更多匹配版本见  ht ...

  2. 解决Ubuntu14.04安装Chrome浏览器打不开的问题

    解决Ubuntu14.04安装Chrome浏览器打不开的问题 参考文章: (1)解决Ubuntu14.04安装Chrome浏览器打不开的问题 (2)https://www.cnblogs.com/li ...

  3. Ubuntu14.04安装Torch7笔记

    Ubuntu14.04安装Torch7笔记 利用快捷键Ctrl+Alt+T打开Ubuntu终端 第一步: 获取安装LuauJIT(C语言编写的Lua的解释器)和Torch所必需的依赖包. 代码如下: ...

  4. linux安装tensorflow教程,Ubuntu 16.04 安装 TensorFlow(GPU支持)

    本文记录Ubuntu 16.04安装Tensorflow步骤,也包括怎么从源码编译安装Tensorflow. 要想安装Tensorflow GPU版本,你需要有一个新一点的Nvidia显卡. Tens ...

  5. ubuntu14.04安装hadoop2.7.1伪分布式和错误解决

    ubuntu14.04安装hadoop2.7.1伪分布式和错误解决 需要说明的是我下载的是源码,通过编译源码并安装 一.需要准备的软件: 1.JDK和GCC     设置JAVA_HOME:      ...

  6. 编译android 7.1 jdk版本,ubuntu14.04 安装 open-jdk-1.8,下载编译 android nougat 7.1.1

    一,ubuntu14.04 安装 open-jdk-1.8 在 ubuntu 下,把jdk 解压到 /usr/lib/jvm/ 目录下,配置环境变量,就ok. 下面是我已经安装的jdk crg@crg ...

  7. Ubuntu14.04安装build-essential失败,包依赖问题如何解决?

    Ubuntu14.04安装build-essential失败,包依赖问题如何解决? 参考文章: (1)Ubuntu14.04安装build-essential失败,包依赖问题如何解决? (2)http ...

  8. Ubuntu14.04安装中文输入法以及解决Gedit中文乱码问题

    Ubuntu14.04安装中文输入法以及解决Gedit中文乱码问题 参考文章: (1)Ubuntu14.04安装中文输入法以及解决Gedit中文乱码问题 (2)https://www.cnblogs. ...

  9. linux集显驱动程序,Ubuntu14.04安装intel集显驱动

    Made with Remarkable! Ubuntu14.04安装intel集显驱动 标签(空格分隔): ubuntu linux 驱动安装 1.查看本机显卡型号 使用lspci命令来获取PCI接 ...

  10. ubuntu14.04安装与软件重装说明

    1.  安装ubuntu14.04 1)利用U盘安装号系统:ssd盘作/ 20G  /HOME  100G   swap分区用机械硬盘10G 2)装好后,打开软件更新,选最优服务器,跟新软件.. su ...

最新文章

  1. poj2187(最远点的距离的平方)
  2. Video4Linux
  3. 集成ffmpeg/x264:ERROR: libx264 not found的问题
  4. 华为云3大体系化防护实践,保障金融业云上数据安全
  5. Pspice 使用指南(中文)
  6. android push php,Android_android push推送相关基本问答总结,通知和消息有什么区别?通 - phpStudy...
  7. 2022年最新版黑马程序员Java自学路线(免费分享)
  8. 径流模拟方法探究——P-Ⅲ频率曲线与copula函数
  9. 硅谷之谜读后感以及最近总结
  10. 无人机项目跟踪记录七十七----蓝牙模块详解
  11. android上跑脚本,光遇自动跑图脚本
  12. EXCEL复制可见单元格
  13. java 找不到符号变量_java 编程中出现的 找不到符号 的问题
  14. 易语言数字指令编程大全(发送信息代码数据集合)
  15. 用C语言学习高中数学:补集
  16. 多目标线性规划(matlab编程)
  17. (Python)从零开始,简单快速学机器仿人视觉Opencv---运用一:快速截取图像中指定单个物体
  18. 介绍四种绘制词云图的方法
  19. lol的不只有英雄联盟,还有程序开发天团!
  20. 思科交换机基础--7三层交换机实现不同vlan互通

热门文章

  1. Spring Cloud Config分布式配置中心高可用及配置刷新(学习总结)
  2. springcloud之gateway服务网关
  3. Spring源码之bean的属性填充populateBean方法解读
  4. Git操作的基本命令
  5. 一步一步创建ASP.NET MVC5程序[Repository+Autofac+Automapper+SqlSugar](十一)
  6. ASP.NET 自定义DataTable数据
  7. memcached命令
  8. Python 创建本地服务器环境生成二维码
  9. Linux下挂载iscsi存储及多路径功能配置
  10. EditText有焦点(focusable为true)阻止输入法弹出