Tag:virtual environment
-
Time:2021-1-10
preface Last time we set up the development environment of tensorflow. It’s convenient to run the test model, but it’s still too large for raspberry pie. Only 0.3 FPS can’t meet the needs of real-time production environment. In this article, we deploy tensorflow Lite for mobile terminal and embedded devices, and run several models to […]
-
Time:2021-1-4
Take notes as a summary of these days Environment: Ubuntu 16.04 Comes with Python 2.7 and python 3.5 1. Install virtualenv Note: do not use sudo here. If you have used sudo, you will use the one that comes with the system, and then it is not installed pip3 install virtualenv If […]
-
Time:2020-12-22
Recently, they participated in the second Apache Flink geek challenge. The competition requires all teams to use big data + AI technology to help solve the challenge of epidemic prevention and control. The official computing framework is Apache Flink + analytics zoo. Due to the use of both big data technology and AI technology in […]
-
Time:2020-12-3
At present, there are many ways to build personal blogs on the Internet, although they use WordPress (PHP) and hexo( Node.js )We can easily and quickly build a full-featured high-performance personal blog, but this paper will try a more niche solution — a personal blog application based on Django blog Zinnia (Python). Although Django blog […]
-
Time:2020-11-24
Build Python web server with Ubuntu + Django + nginx + uwsgi + MySQL Not long ago, in order to deploy the Django project, I searched everywhere for tutorials on Baidu. For such reasons, the tutorials found always failed. It may be because the author’s level is relatively high, and some details are not expected […]
-
Time:2020-11-14
Anaconda is a free and open source python.When we use Python for programming, we usually use a variety of third-party libraries. These libraries help us realize many useful functions and help us build our own programs quickly. If we simply install python, we need to consider the dependency between these libraries. Anaconda helps us install […]
-
Time:2020-11-4
Create virtual environment conda create -n MaskRCNN python=3.6 pip Activation command: CONDA activate maskrcnn Exit command: CONDA activate Installation environment (also according to requiremens.txt File one click installation) #There is a GPU version of the graphics card, no graphics card do not – GPU #This version comes with cuda10.1 and cudnn7.6.5 pip install tensorflow-gpu==1.14.0 #Avoid […]
-
Time:2020-10-18
preface Last time we installed the environment for Python. In this article, we set up a development environment for tensorflow and keras. It has to be said that, compared with Python, tensorflow supports various systems really well. There are corresponding pre compiled installation packages for all platforms and versions, and the official documents are also […]
-
Time:2020-10-17
preface Last time we set up a tensorflow development environment. It’s convenient to run test models, but it’s still too big for raspberry pie. Only 0.3fps can not meet the needs of real-time production environment. In this article, we deploy tensorflow Lite, which is specially designed for mobile terminals and embedded devices, and run several […]
-
Time:2020-10-15
Before deploying the Django website, you should first handle the preliminary work, such as settings.py File settings to prevent the disclosure of private information. This article is just a simple notehttps://tutorial.djangogirls…. 1. Publish Django project to GitHub 2. Apply for a free Python anywhere accountwebsite:https://www.pythonanywhere.com/Free account can only build one station. Station name can only […]
-
Time:2020-10-8
The development environment used in this tutorial The system platform of the development environment is windows 10 (64 bit), python version is 3.5.2 (64 bit), and Django version is 1.10.6. It is recommended to be consistent with the development environment of the tutorial as much as possible (especially Python and Django versions) to avoid unnecessary […]
-
Time:2020-10-6
Managing Python versions pyenv Simple Python Version Management Belongs to the same project as the third-party package management tool pyenv virtualenv Pyenv win branch is recommended in windows GitHub url: https://github.com/pyenv/pyenv alternatives In Linux, you can use alternates to switch the default version of software (not just Python) Ubuntu-18.04 free switch between Python 2 and […]