久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

      <bdo id='Ntuz7'></bdo><ul id='Ntuz7'></ul>
    1. <small id='Ntuz7'></small><noframes id='Ntuz7'>

      <i id='Ntuz7'><tr id='Ntuz7'><dt id='Ntuz7'><q id='Ntuz7'><span id='Ntuz7'><b id='Ntuz7'><form id='Ntuz7'><ins id='Ntuz7'></ins><ul id='Ntuz7'></ul><sub id='Ntuz7'></sub></form><legend id='Ntuz7'></legend><bdo id='Ntuz7'><pre id='Ntuz7'><center id='Ntuz7'></center></pre></bdo></b><th id='Ntuz7'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='Ntuz7'><tfoot id='Ntuz7'></tfoot><dl id='Ntuz7'><fieldset id='Ntuz7'></fieldset></dl></div>
    2. <tfoot id='Ntuz7'></tfoot>
    3. <legend id='Ntuz7'><style id='Ntuz7'><dir id='Ntuz7'><q id='Ntuz7'></q></dir></style></legend>
    4. 使用 pip 安裝特定的軟件包版本

      Installing specific package versions with pip(使用 pip 安裝特定的軟件包版本)
      <i id='dp2fW'><tr id='dp2fW'><dt id='dp2fW'><q id='dp2fW'><span id='dp2fW'><b id='dp2fW'><form id='dp2fW'><ins id='dp2fW'></ins><ul id='dp2fW'></ul><sub id='dp2fW'></sub></form><legend id='dp2fW'></legend><bdo id='dp2fW'><pre id='dp2fW'><center id='dp2fW'></center></pre></bdo></b><th id='dp2fW'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='dp2fW'><tfoot id='dp2fW'></tfoot><dl id='dp2fW'><fieldset id='dp2fW'></fieldset></dl></div>

      <small id='dp2fW'></small><noframes id='dp2fW'>

          <bdo id='dp2fW'></bdo><ul id='dp2fW'></ul>

          • <legend id='dp2fW'><style id='dp2fW'><dir id='dp2fW'><q id='dp2fW'></q></dir></style></legend>
            <tfoot id='dp2fW'></tfoot>
                  <tbody id='dp2fW'></tbody>
              • 本文介紹了使用 pip 安裝特定的軟件包版本的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

                問題描述

                我正在嘗試安裝 MySQL_python 的 1.2.2 版,使用使用 --no-site-packages 選項創(chuàng)建的全新 virtualenv.PyPi 中顯示的當前版本是 1.2.3.有沒有辦法安裝舊版本?我試過了:

                I am trying to install version 1.2.2 of MySQL_python, using a fresh virtualenv created with the --no-site-packages option. The current version shown in PyPi is 1.2.3. Is there a way to install the older version? I have tried:

                pip install MySQL_python==1.2.2
                

                然而,安裝后,它仍然在站點包中顯示MySQL_python-1.2.3-py2.6.egg-info.這是這個包特有的問題,還是我做錯了什么?

                However, when installed, it still shows MySQL_python-1.2.3-py2.6.egg-info in the site packages. Is this a problem specific to this package, or am I doing something wrong?

                推薦答案

                TL;DR:

                • pip install -Iv(即pip install -Iv MySQL_python==1.2.2)

                首先,我發(fā)現(xiàn)您嘗試執(zhí)行的操作存在兩個問題.由于您已經(jīng)安裝了版本,您應(yīng)該卸載當前現(xiàn)有的驅(qū)動程序或使用 pip install -I MySQL_python==1.2.2

                First, I see two issues with what you're trying to do. Since you already have an installed version, you should either uninstall the current existing driver or use pip install -I MySQL_python==1.2.2

                但是,您很快就會發(fā)現(xiàn)這行不通.如果您查看 pip 的安裝日志,或者執(zhí)行 pip install -Iv MySQL_python==1.2.2,您會發(fā)現(xiàn) PyPI URL 鏈接不適用于 MySQL_python v1.2.2.你可以在這里驗證:http://pypi.python.org/pypi/MySQL-python/1.2.2

                However, you'll soon find out that this doesn't work. If you look at pip's installation log, or if you do a pip install -Iv MySQL_python==1.2.2 you'll find that the PyPI URL link does not work for MySQL_python v1.2.2. You can verify this here: http://pypi.python.org/pypi/MySQL-python/1.2.2

                由于 sourceforge.net 最近的升級和 PyPI 的陳舊 URL,下載鏈接 404 和回退 URL 鏈接無限重定向.

                The download link 404s and the fallback URL links are re-directing infinitely due to sourceforge.net's recent upgrade and PyPI's stale URL.

                因此要正確安裝驅(qū)動程序,您可以按照以下步驟操作:

                So to properly install the driver, you can follow these steps:

                pip uninstall MySQL_python
                pip install -Iv http://sourceforge.net/projects/mysql-python/files/mysql-python/1.2.2/MySQL-python-1.2.2.tar.gz/download
                

                這篇關(guān)于使用 pip 安裝特定的軟件包版本的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

                【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請聯(lián)系我們刪除處理,感謝您的支持!

                相關(guān)文檔推薦

                How to use windowing functions efficiently to decide next N number of rows based on N number of previous values(如何有效地使用窗口函數(shù)根據(jù) N 個先前值來決定接下來的 N 個行)
                reuse the result of a select expression in the quot;GROUP BYquot; clause?(在“GROUP BY中重用選擇表達式的結(jié)果;條款?)
                Does ignore option of Pyspark DataFrameWriter jdbc function ignore entire transaction or just offending rows?(Pyspark DataFrameWriter jdbc 函數(shù)的 ignore 選項是忽略整個事務(wù)還是只是有問題的行?) - IT屋-程序員軟件開發(fā)技
                Error while using INSERT INTO table ON DUPLICATE KEY, using a for loop array(使用 INSERT INTO table ON DUPLICATE KEY 時出錯,使用 for 循環(huán)數(shù)組)
                pyspark mysql jdbc load An error occurred while calling o23.load No suitable driver(pyspark mysql jdbc load 調(diào)用 o23.load 時發(fā)生錯誤 沒有合適的驅(qū)動程序)
                How to integrate Apache Spark with MySQL for reading database tables as a spark dataframe?(如何將 Apache Spark 與 MySQL 集成以將數(shù)據(jù)庫表作為 Spark 數(shù)據(jù)幀讀取?)

                  <tbody id='804iB'></tbody>

                • <tfoot id='804iB'></tfoot>

                    <legend id='804iB'><style id='804iB'><dir id='804iB'><q id='804iB'></q></dir></style></legend>
                      <bdo id='804iB'></bdo><ul id='804iB'></ul>
                      1. <small id='804iB'></small><noframes id='804iB'>

                        <i id='804iB'><tr id='804iB'><dt id='804iB'><q id='804iB'><span id='804iB'><b id='804iB'><form id='804iB'><ins id='804iB'></ins><ul id='804iB'></ul><sub id='804iB'></sub></form><legend id='804iB'></legend><bdo id='804iB'><pre id='804iB'><center id='804iB'></center></pre></bdo></b><th id='804iB'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='804iB'><tfoot id='804iB'></tfoot><dl id='804iB'><fieldset id='804iB'></fieldset></dl></div>

                          主站蜘蛛池模板: 亚洲 欧美 综合 | 午夜羞羞 | 亚洲成色777777在线观看影院 | 精品亚洲一区二区三区四区五区 | 华丽的挑战在线观看 | 亚洲美女视频 | 在线观看视频h | 欧美一区免费 | 天天亚洲 | 美女久久久久久久 | 成人免费观看男女羞羞视频 | 性高朝久久久久久久3小时 av一区二区三区四区 | 欧美一级网站 | 亚洲一区视频在线 | 久久久久久高潮国产精品视 | 欧美一区二区三区在线观看 | 欧美日韩高清一区二区三区 | www.成人.com | 羞羞视频网站在线观看 | 一区二区三区四区av | 国产午夜精品视频 | 九色porny自拍视频 | 91免费在线视频 | 97久久精品午夜一区二区 | 日韩一区二区三区在线播放 | 欧美电影在线观看网站 | www.色婷婷| 激情五月婷婷在线 | 精品香蕉一区二区三区 | 国产不卡一区在线观看 | 国产成人艳妇aa视频在线 | 亚洲成人动漫在线观看 | 国产成人精品av | 99国产精品久久久久老师 | 黄色大全免费看 | 久久爱一区 | 成人在线精品视频 | 亚洲日本欧美 | 精品一区二区三区在线观看国产 | av在线免费网 | 美女视频黄色的 |