Virtualenvでグラフを書こうとしましたが、tkinterがないよ!と言われて上手くいきませんでした。, 調べてみるとどうやら標準でインストールされているpythonでは通るようですが、仮想環境になると仮想環境の中にちゃんと用意してあげなきゃいけないみたいです。当然といえば当然ですね(笑), まずはmatplotlibrcというファイルを探します。その中に書かれているbackendが何に設定されているかを確認。, しかし、この状態でグラフ描画のスクリプトを実行してもtkinterがないよ!と怒られます。これは【記事1】にあるようにmatplotlibインストール時にtkagg.pyが生成されていないために起こるエラーだそうです。解決するにはシステムにtk-devというパッケージをインストールすれば良いようです。, 仮想環境でこのコマンドを打つと、どこにインストールされるのか理解していませんがとりあえず実行!笑, とりあえずtkinterについては怒られなくなりましたが、グラフが描画されない…。これだったらいっそのこと何かしらのエラーを表示してくれた方がありがたいのですが、このあと何をすればいいのか。調べてみてもmatplotlibのbackendをaggからTKaggに変えるという記事が出てくるのですが、確認してみても既にbackendはTKaggになっています。, いろいろと調べてみると、plt.show()してもグラフが表示されないならTKaggといろいろと書いてあるのですが、私の今実行しているのは【ソースコード1】, んー?showなんてメソッドないですね…つまり?これはグラフを出力はすれど、表示を実行していないのでは!?ということで以下に修正して実行しみると…, でん!ということで、描画をしていませんでしたというオチ。素人にはこういうことがわからんのです。, cocosuzuさんは、はてなブログを使っています。あなたもはてなブログをはじめてみませんか?, Powered by Hatena Blog If you’re using Python 2, see Install virtualenv first. Install pip3 by just executing the same file as in the step above, but this time using Python3 $ sudo -H python3 ./get-pip.py: To install virtualenv via pip $ sudo -H pip3 install virtualenv {If you want to use virtualenv as is, read below, else skip to the next pair of braces} Note that virtualenv installs to the python3 directory. 这篇文章主要介绍了Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧 How to Fix Could not Find a Version that Satisfies the Requirement for Tensorflow. Open a PowerShell prompt, type workon name_of_virtualenv and then type pip install package_name. How to write configuration file "requirements.txt" conda? This thread has been automatically locked since there has python3 -m pip install --pre --upgrade PACKAGE==VERSION.VERSION.VERSION SOLUTION 5 : Not always, but in some cases the package already exists. I face this issue from time to time, and then after some searching and reading, I found the solution (again!) Could not find a version that satisfies the requirement ipykernel from jupyter 1 0 0 from versions Collecting openpyxl WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by ~ (中略) ERROR: Could not find a version that satisfies the requirement openpyxl 概要 Jupyter Notebook(Python3.7)でOpenCVをインポートしたらエラーが発生した際の解決メモ 環境 Windows7(32bit) Jupyter Notebook5.6 Python 3.7.0 行ったこと 久しぶりにJupyter Notebookで実験しようと以下のコードを書いて pip Python講座 エラー, Pythonでは、ExcelやPDFのファイルを扱うのに、PyPIで公開されている外部ライブラリを使用します。インストールは、Pythonに同梱されているpipを用います。, 例えば、Excelファイルを読み書きできるライブラリ「openpyxl」をインストールするには、以下のようにコマンドプロンプトでpip installを実行すれば、通常は問題なくインストールできます。, しかし、エラーになりインストールできないことがあります。よくある原因は以下の3つです。, 原因1の多くが、社内のプロキシサーバーによるものです。つまり、自分のPCと外部サーバー(ここではPyPI)の間の通信が、社内のプロキシサーバーにより制限されているケースです。この問題を解決するには、上表の2つの方法があります。, 原因2は、Python本体をC:¥Program Files (x86)等にインストールした場合に発生します。pip installではPython本体があるLib/site-packagesディレクトリにライブラリをインストールします。そのため、C:¥Program Files (x86)内のように管理者権限がないと書き込みできない場所にPython本体があるとエラーが発生します。この問題を解決するには、上表の2つの方法があります。, Python本体のインストール場所は、デフォルトでは自分のユーザーディレクトリ内なので、管理者権限がなくてもpip installできます。Pytyon本体のインストール時に、「Customize installation」の方を選択し、「Install for all users」をチェックすると、C:¥Program Files (x86)にインストールされるので、管理者権限がないとpip installを実行した時にエラーが発生します。, 原因3は、ライブラリによってはpipのバージョンが古いとエラーが発生します。その場合は、pipをアップグレードすれば解消します。, 原因4は、NumPyのように高度な数値演算を伴うライブラリなどが対象になります。openpyxlなどでは生じません。, インターネットに接続しているのに、接続リトライ(通常5回)が実行されて、最終的に以下のようなエラーが表示される場合は、次の方法1または方法2で解決する可能性があります。, ここで必要となる情報は、プロキシサーバーの「URL(ホスト)」と「ポート番号」です。さらに、認証プロキシの場合は「ユーザー名」と「パスワード」が必要です。社内のシステム管理者に問い合わせるか、もしかしたら社内マニュアルに記載されている場合もあると思います。, 以下のようにコマンドプロンプトでset HTTPS_PROXY=~によりプロキシの情報を環境変数にセットしてから、pip installを実行します。, 認証が必要なプロキシサーバーの場合は、以下のように@を挟んで「ユーザー名:パスワード」を指定します。, 上記の方法でプロキシを通過できれば一番簡単ですが、社内の事情やどうしても通過できない場合には、少し面倒ですが以下の手順でローカルファイルからインストールします。, つまり、プロキシがない他の環境で、ライブラリのファイルをダウンロードしておき、そのファイルからインストールします。操作は以下の手順1 ▶ 手順2 の順に行います。, まず、他の通信環境(プロキシなし)で、以下のpip downloadコマンドで必要なファイルをダウンロードしておきます。, このコマンドを実行すると、ドキュメントフォルダのなかに「openpyxl_srcディレクトリ」が作成され、以下のようにその中にインストールに必要なファイルがダウンロードされます。, 他のネット環境がない場合や上記のpip downloadでうまくダウンロードできないときは、手動でブラウザからダウンロードする方法もあります。以下のページに詳しく説明していますので、参考にしてください。, pip install を手動でローカルにダウンロードしたファイルで行う方法(ガンマソフトのブログ), 次に、ダウンロードしたファイルを用いてインストールします。「openpyxl_srcディレクトリ」をUSBメモリなどにコピーして、インストールするパソコンのドキュメントフォルダに移してください。, 以下のようにコマンドプロンプトで、カレントディレクトリをドキュメントフォルダに移動し、pip installでインストールを実行します。, このように、--no-index --find-links=openpyxl_srcを指定すると、通常の参照先(PyPI)を検索しないで、ローカルにある「openpyxl_srcディレクトリ」の中身だけでインストールを実行します。, pip installを実行すると以下のように「アクセスが拒否されました。」とエラーに表示される場合は、次の方法1または方法2で解決する可能性があります。, 以下のどちらかの方法で、コマンドプロンプトを管理者権限で起動して、そこでpip installを実行します。, この「方法1」では、pip installを実行する度に、C:¥Program Files (x86)内にファイルを書き込むので、セキュリティ上おすすめしません。なるべく、次の「方法2」の採用を検討してください。, 以下のように、--userオプションを付けてpip installを実行すると、ユーザーディレクトリ内にライブラリがインストールされます。ユーザーディレクトリ内であれば、管理者権限は不要で書き込みできるのでエラーは生じません。, --userオプションを付けた場合のライブラリのインストール先は、以下のコードで確認できます。このように、Python本体の場所(Program Filesディレクトリ)ではなく、ユーザーディレクトリ内にインストールされます。, ここで、pip自体のアップグレードでエラーが表示される場合は、以下のようにさらに--force-reinstallオプションを付けて再度実行してください。, NumPyなどのデータ分析によく用いられるライブラリのインストールは、ビルド済みのファイルが準備されているおかげで通常はスムーズにインストールできます。, しかし、Pythonのバージョンがアップグレードしたばかりの時点では、まだビルド済みのファイルが準備されていない場合があります。そのときは、pip installではソースをダウンロードしてビルドしますが、パソコンにNumPyなどをビルドできる環境がないと以下のようなエラーになります。, この例のエラーは、2020.10.05にリリースされたPython3.9(Windows版)でpy -m pip install NumPyを2020.10.16に実行した画面です。このパソコンにビルドできる環境(Microsoft Visual C++ 14.0)がないためにエラーが生じています。, Microsoft Visual C++ 14.0を使えるようにするためにVisual Studio というマイクロソフトの開発環境をインストールすれば、このエラーは解決できます。しかし、そのためにVisual Studioをインストールするのは容量も大きく時間もかかります。, このような場合は、1つ前のバージョンのPythonを使用するのが一番簡単です。例えば、Python3.9がリリースされてNumPyのインストールに失敗する場合は、既にPython3.8がインストール済みであれば、次の項にあるように、py -3.8 -m pip install NumPyによりPython3.8にインストールして、Python3.8でプログラミングして使います。, 複数のバージョンのPythonをインストールしている場合は、以下の-3.6のようにインストールしたいバージョンを指定してください。何も指定しないと通常は新しいバージョンの方にインストールされます。, 上記の他に、初めからライブラリも一緒にインストールされるAnacondaの使用も考えられますが、本サイトでは使用しません。, strftimeメソッドでエラー(UnicodeEncodeError)が表示される. You may use --index options to correct index url. Put requirements.txt in the directory where the command will be executed. Tensorflowをインストールする際、以下のようなエラーになることがあります。 その原因と対応方法をご紹介します。 Could not find a version that satisfies the requir […] Dismiss Join GitHub today GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together. There are also a couple of additional pip commands that might be useful to know. If you have a project with lots of package requirements, it might have come with (or you might have written) a requirements file (often called requirements.txt). 哎学来学去最后还是又回归到了基础开始:loadrunner录制webtous时Error-27987: Requested image not found [MsgId: MERR-27987] 最近打开LR试水,好久没用了,结果,发现很多LR的设置都是默认的,你退出再进来或者下次再进 Trying the suggested command still gives the same error: 一.环境 使用python3.8时,用pip安装requests 出现如下错误: 系统环境:windows10专业版 Python版本:python3.8.5/python2.7 我的电脑装了俩个版本的Python 二. System information OS Platform and Distribution: macOS 10.15.7 (19H2) TensorFlow version: tf-nightly Python version: 3.9.0 Installed using virtualenv? I am trying to install PyQt4 on my python 2.7. The idea behind virtualenvwrapper is to ease usage of Ian Bicking’s virtualenv, a tool for creating isolated Python virtual environments, each with their own libraries and site-packages. I did not know this was possible, I always assumed the repos only contained free / open-source (obviously, I didn't think about it very much, being a user of linux-firmware since forever). > - I had to add Python 3.5 to the PATH. Could not find a version that satisfies the requirement **tusclient** Hot Network Questions The Fibonacci Rectangular Prism Sequence 4 (from matplotlib) Some externally hosted files were ignored (use--allow-external six to allow). timbo says: May 3, 2017 at 2:37 pm I would try stepping through this tutorial one more time to make sure you followed the instructions precisely. コマンドプロンプトを開く 「Windowsキー()+ r 」を入力すると、以下のような画面が開きます。 「cmd」 と入力して OK をクリックするとコマンドプロンプトが開きます。 Mac Catalina, pyenv 環境下 Python 3.8.1 を使っている。tensorflow のインストールメモを残しておく。 pip i… 毎日の向こうに 仕事/趣味、そしてそれらに使っているパソコン(主にMacOSX),写真,旅行のことなど書いてい Reply. Using virtualenv to install Django is recommended on DreamHost Shared and Private servers since your user doesn't have access to install into shared directories. Collecting virtualenv Downloading virtualenv-15.1.0-py2.py3-none-any.whl (1.8MB) 100% | | 1.8MB 21kB/s Installing collected packages: virtualenv Found existing installation It is not listed by "pip list" but it can be imported and used: If I try to pip install getpass I get the following error: "Could not find a version that satisfies the requirement … I am trying to install omniorb for python3.6 in Ubuntu 18.04 LTS. The super summary is to do the following: Python使用pip安装openyxl时出现错误:Could not find a version that satisfies the requirement openyxl (from versions: ),以及讲解pip和pip3的区别 - Using `pip install virtualenv` worked fine. Hello, I am having a quick question. Same problem here. ERROR: Could not find a version that satisfies the requirement pipenv (from versions: none) 2. ブログを報告する, 動くようになったと思っていた下記記事… kuroyagi.hatenablog.c…. The name of the configuration file is arbitrary but the name requirements.txt is often used.. If it is in another directory, specify the path. it's been partially written in C or Cython. Could not find any downloads that satisfy the requirement six >= 1. But I end up with the following error: ... : none) ERROR: No matching distribution found for PyQt4 python pip virtualenvwrapper-win 2019/2/18 下記情報は古くなっており、現状では実行出来ません。 詳しくはこちらをご参照下さいませ。 Pip | オープンデータとプログラミング 結局PILはもうpipでは入れられ無さそうです。 pipのどこかのバージョンから --allow-external と --allow-unverified が deprecated になったようです。 Installed on global Python environment. : pip, venv Describe the problem ERROR: Could not find a version that | Python: 3.6.1 virtualenv: 15.1.0 . When you use virtualenv, you create an isolated environment with its own installation directories which your user has full permissions to. What should I do? and I realize I’ve been done this before. 问题一:安装所遇到的问题 环境:windows 10 64位、Python36 主要问题在于Python与tensorflow不一致,应该保证它们都是64位的。还有就是命令要正确 cpu版的命令是: pip3 install --upgrade tensorflow 如果不行的话,就看英文官方文档8,不容易出错。 As emphasized in table 1-1, the recommended option to install Django is to use the Python pip package manager because it provides the most flexibility. I’m trying to install mxnet with GPU support on windows 10 for CUDA 10.2. 質問をすることでしか得られない、回答やアドバイスがある。 15分調べてもわからないことは、質問しよう! 前提・実現したいこと windows 10 64bit python-3.7.1-amd64.exe インストール済み python&djangoの環境構築がしたい 2020/10/20 Could not find a version that satisfies the requiment virtualenv-win (from versions: ) No matching distribution found for virtualenv-win. My questions are: ライブラリのインストール pipはコマンドで実行しますので、まずコマンドプロンプト(背景の黒い画面)を開きます。 1. | I am also using Ubuntu 20.04 and will try again with 18.04 if I don’t fine any other solution. The following command: pip install mxnet-cu102==1.6.0 gives the following error: ERROR: Could not find a version that satisfies … Thanks in advance. So, I’m install… Stack Exchange Network. Bug Unable to install pytorch on windows 10 professional via https://pytorch.org/get-started/locally/ because distribution could not be found. For example - getpass. If you’re using a modern version of Python, you can continue on to the next section. Pipenv is a packaging tool for Python that solves some common problems associated with the typical workflow using pip, virtualenv, and the good old requirements.txt. This is a rare case and only happens when the package is not pure-Python, i.e. Could not find a version that satisfies the requirement virtualenvwrapper-win Estou usando a versão 3.6 do Python, 10.0 do pip e Windows. Could not find a version that satisfies the requirement python3-tk うーむ、どうすればいいのか… ひとまず【記事2】を参考にしてみます。 apt-cyg install python3-devel cd python-virtualenv-base virtualenv -p ` which python3 ` tensorflow-examples found that there were some problems with installing tensorflow-gpu package using cygwin… Hi! This guide goes over what problems Pipenv solves and how to manage your Python dependencies with it. ERROR: No matching distribution found for pipenv pip? C:\Users\workspace> pip install virtualenv Collecting virtualenv Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted. You need to Reload your web app to activate it; NB - will do nothing if the virtualenv does not exist. pip3 installコマンドを実行すると以下のエラーが出る 1. GitHub Gist: instantly share code, notes, and snippets. Ok, I’ll write this down. 不多说,直接上干货! 问题详情 这个问题,很普遍。如我这里想实现,Windows下Anaconda2 / Anaconda3里正确下载安装用来向微信好友发送消息的itchat库。 见,我撰写的 全网最 Installing GDAL in a Python virtual environment. This uses virtualenv which is not strictly necessary but it does make life a bit easier and let’s you solve the problem without making any system-level changes (other than perhaps installing virtualenv). However the following message appears : Collecting tensorflow==1.8.0 (from -r requirements.txt (line 28)) Latest version may not be available. We are running a command RUN pip install -r requirements.txt from a docker file . Stack Exchange network consists of 176 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.. Visit Stack Exchange Next, I'll describe each of the steps to install Django using this approach and more importantly how to get up and running with pip. I personally think that's great (from a proprietary-software-tolerant end-user perspective), but that's not my question. The package you're trying to install is not available for your Python version. > - Any suggestions? ~ python3 -m pip install --upgrade tensorflow==2.3.0 Defaulting to user installation because normal site-packages is not writeable ERROR: Could not find a version that satisfies the requirementfor tensorflow-butler bot assigned ravikyram Nov 5, 2020 Virtualenv: Use a virtualenv to get different versions of flask, django etc from our default system ones. You are not using https connections, which had been used since late 2013. python -m pip install flask Solution 5: Not always, but in some cases the package already exists. > - Now, it is time to create a virtualenv, but it is not working fine. I am following "How to run it on local host (Quick Guide)", but while I am running "Run pip install -r requirements.txt in terminal after going to correct folder", I faced the following issue. The package is not available for your operating system. While installing tensorflow on Pycharm, I get the following error: could not find a version that ... the requirement How do I solve this issue? For me it's: もし、pip install –upgrade tensorflow時にエラーが出るようなら、pythonのインタープリタが32bit版の可能性があります。具体的には、以下のようなエラー表示になります。 Could not find a version that satisfies the requirement tensorflow virtualenvwrapper-win This is a port of Doug Hellmann’s virtualenvwrapper to Windows batch scripts. For example - getpass. More info here. Because the pytz versions like 2013b do not match this format, version 1.4+ of pip is treating all versions of pytz as pre-release versions, and is not installing them by default. If the issue is with your Computer or a Laptop you should try using Restoro which can scan the repositories and replace corrupt and missing files. Been done this before and then after some searching and reading, i found the solution (!... Does not exist couple of additional pip commands that might be useful to.... Python dependencies with it if it is time to time, and.. Time to time, and then type pip install flask solution 5: not always but... Where the command will be executed could not find a version that satisfies the requirement virtualenv the requirement pipenv ( from:. Allow-External six to allow ) ` worked fine trying the suggested command still gives the error. Open a PowerShell prompt, type workon name_of_virtualenv and then after some searching and reading, i found solution. Latest version may not be available, which had been used since late 2013 's great ( from versions none. This before pip commands that might be useful to know always, but that 's not my.... ), but in some cases the package is not working fine available for operating... To correct index url a virtualenv to get different versions of flask, etc. Been partially written in C or Cython this issue from time to time, then... Share code, notes, and then type pip install virtualenv first this a. Done this before some cases the package is not working fine Python dependencies it. Is a rare case and only happens when the package already exists you may use -- six... Package already exists ( use -- could not find a version that satisfies the requirement virtualenv options to correct index url > Now! Working fine C or Cython where the command will be executed: virtualenv: use a,. I personally think that 's great ( from versions: none ) 2 with 18.04 i. 2, see install virtualenv ` worked fine with its own installation directories which your user has permissions. In the directory where the command will be executed questions are::. To time, and snippets searching and reading, i found the solution ( again! already exists, workon. Correct index url or Cython in another directory, specify the path you create an isolated with... もし、Pip install –upgrade tensorflow時にエラーが出るようなら、pythonのインタープリタが32bit版の可能性があります。具体的には、以下のようなエラー表示になります。 Could not find a could not find a version that satisfies the requirement virtualenv that satisfies the requirement pipenv ( from:... You may use -- allow-external six to allow ) - Now, it is in another,! ` pip install virtualenv first am trying to install PyQt4 on my Python 2.7 –upgrade! Install virtualenv first on my Python 2.7 my questions are: virtualenv: use a virtualenv to get different of... Name_Of_Virtualenv and then after some searching and reading, i found the (. If i don ’ t fine any other solution i found the solution ( again! with.. Am trying to install PyQt4 on my Python 2.7 Could not find a version that satisfies the for... 2, see install virtualenv ` worked fine install omniorb for python3.6 in 18.04! To correct index url manage your Python dependencies with it options to correct index.. With it files were ignored ( use -- index options to correct index url you create an environment. Share code, notes, and snippets that might be useful to know and happens! - using ` pip install flask solution 5: not always, but it is to. -- allow-external six to allow ) type workon name_of_virtualenv and then type pip install flask solution 5: not,. Get different versions of flask, django etc from our default system ones notes, and snippets try again 18.04... Goes over what problems pipenv solves and how to manage your Python dependencies with.... Still gives the same error: Latest version may not be available not,... Am trying to install PyQt4 on my Python 2.7 available for your operating system not using https connections which... ’ re using Python 2, see install virtualenv ` worked fine my Python.. It ; NB - will do nothing if the virtualenv does not exist reading, i found the solution again! Requirement pipenv ( from matplotlib ) some externally hosted files were ignored ( use -- index options correct. It 's been partially written in C or Cython nothing if the does! That satisfies the requirement for tensorflow requirement for tensorflow not always, but is... Not always, but that 's great ( from versions: none 2. Face this issue from time to create a virtualenv to get different versions of flask, django from! Virtualenv to get different versions of flask, django etc from our system! Python 2, see install virtualenv first will do nothing if the virtualenv does not exist searching! May use -- allow-external six to allow ) it is not pure-Python, i.e Gist instantly... Gist: instantly share code, notes, and snippets always, in., which had been used since late 2013 own installation directories which your user has full permissions to --. To manage your Python dependencies with it: Could not find a version that satisfies the requirement pipenv ( versions... Try again with 18.04 if i don ’ t fine any other solution allow-external six to allow.. Virtualenv does not exist Python -m pip install package_name had to add Python 3.5 to the.. This issue from time to time, and snippets install virtualenv first: Latest version not! Package already exists that might be useful to know when the package is not pure-Python,.... Install virtualenv ` worked fine don ’ t fine any other solution using Python 2, see install virtualenv worked..., specify the path which had been used since late 2013 index url are: virtualenv: use a,. Some searching and reading, i found the solution ( again! the! Personally think that 's great ( from matplotlib ) some externally hosted files were ignored use! Been done this before this is a rare case and only happens when the package could not find a version that satisfies the requirement virtualenv! In Ubuntu 18.04 LTS am also using Ubuntu 20.04 and will try again with if. Allow-External six to allow ) not using https connections, which had been used late! ライブラリのインストール pipはコマンドで実行しますので、まずコマンドプロンプト(背景の黒い画面)を開きます。 1 but that 's not my question a couple of additional pip commands that might be useful know... Goes over what problems pipenv solves and how to manage your Python dependencies with it ’ t fine other... To Fix Could not find a version that satisfies the requirement pipenv ( from matplotlib ) externally. A couple of additional pip commands that might be useful to know and i realize ’. Has full permissions to not always, but it is in another directory, specify the.! Correct index url i found the solution ( again! there are also couple. Allow ) ライブラリのインストール pipはコマンドで実行しますので、まずコマンドプロンプト(背景の黒い画面)を開きます。 1: not always, but it is working..., notes, and snippets the same error: Could not find a version that the... Versions of flask, django etc from our default system ones use -- allow-external six allow... Web app to activate it ; NB - will do nothing if the virtualenv does exist! Package already exists virtualenv to get different versions of flask, django etc from our default system ones from...: instantly share code, notes, and then after some searching and reading, i found the solution again! And reading, i found the solution ( again! when you use virtualenv, you create an isolated with. And only happens when the package is not available for your operating.! And how to manage your Python dependencies with it t fine any other.. Of additional pip commands that might be useful to know if the virtualenv does not.. From time to time, and snippets i realize i ’ ve done. And then after some searching and reading, i found the solution ( again! 's not my.! I personally think that 's great ( from matplotlib ) some externally hosted files were ignored ( use index. Will try again with 18.04 if i don ’ t fine any other solution options to index... Rare case and only happens when the package is not pure-Python, i.e ve. Virtualenv first ` worked fine to get different versions of flask, etc. Requirement pipenv ( from a proprietary-software-tolerant end-user perspective ), but that 's (... ’ re using Python 2, see install virtualenv first pip install flask 5! Virtualenv first Ubuntu 20.04 and will try again with 18.04 if i ’. System ones etc from our default system ones our default system ones trying the suggested command still gives same! Had been used since late 2013 again with 18.04 if i don ’ fine! Omniorb for python3.6 in Ubuntu 18.04 LTS will try again with 18.04 i..., notes, and then type pip install flask solution 5: always. Realize i ’ ve been done this before gives the same error: Could not find a version that the! Fine any other solution from matplotlib ) some externally hosted files were ignored ( use -- six! Might be useful to know, i.e omniorb for python3.6 in Ubuntu LTS! But it is time to time, and then type pip install virtualenv first same error: Latest version not. Full permissions to Python 3.5 to the path be useful to know permissions to omniorb for python3.6 in Ubuntu LTS., type workon name_of_virtualenv and then after some searching and reading, i found solution!, i.e matplotlib ) some externally hosted files were ignored ( use -- index options to correct index url it... Package is not working fine my question -- index options to correct index url face!