重安装python(版本不对)导致poetry无法安装使用

0x1 背景

        为了在虚拟环境下开发AI工具,项目经理给我们一个项目启动环境的安装guide,总共10步非常简单, 其中有几步如下, 计划10步总消耗Effort:0.5H

        § curl -sSL https://install.python-poetry.org | python -
        § cd ./ProjectDir/Lib/
        § poetry install
        § poetry shell

        注:我觉得这个这个时间需要半天到一天,哈哈,可惜没有具体理由,只是个直觉。就默认开干。

0x2 问题及尝试
0x20 powershell下curl命令失败

启动powershell终端(vscode 默认启动的就是powershell). 结果直接就失败:

PS C:\Workspace\AIProject> curl -sSL https://install.python-poetry.org| python -
Invoke-WebRequest : A parameter cannot be found that matches parameter name 'sSL'.
At line:1 char:6
+ curl -sSL https://install.python-poetry.org| python -
+      ~~~~
    + CategoryInfo          : InvalidArgument: (:) [Invoke-WebRequest], ParameterBindingException
    + FullyQualifiedErrorId : NamedParameterNotFound,Microsoft.PowerShell.Commands.InvokeWebRequestCommand

非常奇怪 怎么会调到invoke-webRequest呢?太迷惑了,只能helo以下copilot协助一下,结果如下:

question#terminalSelection what's problem?
answer

The error message you're seeing indicates that PowerShell is interpreting `--version` as a URL, which is incorrect. This is because `curl` in PowerShell is an alias for `Invoke-WebRequest`, and it doesn't support the same arguments as the traditional `curl` command found in Unix-like systems.

To check the version of `curl` in PowerShell, you need to use the actual `curl.exe` command. Here's how you can do it:

```powershell
curl.exe --version
```

This command tells PowerShell to use the actual `curl` executable (if it's installed and in your system's PATH), not the `curl` alias.

原来 powershell中的curl不是我们理解的curl,是一个别名

PS C:\Workspace\AIProject> Get-Alias curl

CommandType     Name                                               Version    Source
-----------     ----                                               -------    ------
Alias           curl -> Invoke-WebRequest

至此,我有种预感,后面可能还会又坑,果断切换到git-bash进行安装。 

0x21 git-bash下curl 指令安装poetry失败

       由于提供的指令是git-bash, 为了避免不必要的错误,就安装了最新版本的git-bash. 执行 § curl -sSL https://install.python-poetry.org | python - 顺利完成安装, 结果如下图所示 (git-bash 终端):

结果发生错误,无法安装1.8.3版本,查看log,原来是没有1.8.3的版本 存在:

结果不存在 1.8.3版本

ERROR: Could not find a version that satisfies the requirement poetry==1.8.3 (from versions: 0.1.0, 0.2.0, 0.3.0, 0.4.0, 0.4.0.post1, 0.4.1, 0.4.2, 0.5.0b1, 0.5.0b2, 0.5.0, 0.6.0, 0.6.1, 0.6.2, 0.6.3b1, 0.6.3b2, 0.6.3b3, 0.6.3b4, 0.6.3b5, 0.6.3b6, 0.6.3b7, 0.6.3, 0.6.4b1, 0.6.4, 0.6.5, 0.7.0b1, 0.7.0b2, 0.7.0b3, 0.7.0b4, 0.7.0, 0.7.1, 0.8.0a0, 0.8.0a1, 0.8.0a2, 0.8.0a3, 0.8.0a4, 0.8.0, 0.8.1a0, 0.8.1, 0.8.2, 0.8.3, 0.8.4, 0.8.5a0, 0.8.5, 0.8.6, 0.9.0a0, 0.9.0a1, 0.9.0a2, 0.9.0a3, 0.9.0, 0.9.1, 0.10.0a0, 0.10.0a1, 0.10.0a2, 0.10.0a3, 0.10.0, 0.10.1, 0.10.2, 0.10.3, 0.11.0a0, 0.11.0a1, 0.11.0a2, 0.11.0a3, 0.11.0a4, 0.11.0, 0.11.1, 0.11.2, 0.11.3, 0.11.4, 0.11.5, 0.12.0a0, 0.12.0a1, 0.12.0a2, 0.12.0a3, 0.12.0a4, 0.12.0a5, 0.12.0, 0.12.1, 0.12.2, 0.12.3, 0.12.4, 0.12.5, 0.12.6, 0.12.7, 0.12.8, 0.12.9, 0.12.10, 0.12.11, 0.12.12, 0.12.13, 0.12.14, 0.12.15, 0.12.16, 0.12.17, 1.0.0a0, 1.0.0a1, 1.0.0a2, 1.0.0a3, 1.0.0a4, 1.0.0a5, 1.0.0b1, 1.0.0b2, 1.0.0b3, 1.0.0b4, 1.0.0b5, 1.0.0b6, 1.0.0b7, 1.0.0b8, 1.0.0b9, 1.0.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.0.5, 1.0.6, 1.0.7, 1.0.8, 1.0.9, 1.0.10, 1.1.0a1, 1.1.0a2, 1.1.0a3, 1.1.0b1, 1.1.0b2, 1.1.0b3, 1.1.0b4, 1.1.0rc1, 1.1.0, 1.1.1, 1.1.2, 1.1.3, 1.1.4, 1.1.5, 1.1.6, 1.1.7, 1.1.8, 1.1.9, 1.1.10, 1.1.11, 1.1.12, 1.1.13, 1.1.14, 1.1.15, 1.2.0a1, 1.2.0a2)
ERROR: No matching distribution found for poetry==1.8.3

Traceback:

  File "<stdin>", line 923, in main
  File "<stdin>", line 560, in run
  File "<stdin>", line 582, in install
  File "<stdin>", line 685, in install_poetry
  File "<stdin>", line 375, in pip
  File "<stdin>", line 372, in python
  File "<stdin>", line 367, in run

考虑到同事能够安装,那么问题一定在自己身上;检查自己的python 版本是3.6.8 再去官网看看,已经到13了,不管三七二十一,先换python版本,就换成12吧, 更换后,果然成功执行该条命令, 如下图所示(这个是我后来补的,仅供参考)

marek@PC-52520 MINGW64 /c/Workspace/AIProject/aitool (master)

$ curl -sSL https://install.python-poetry.org | python -

Retrieving Poetry metadata

# Welcome to Poetry!

This will download and install the latest version of Poetry,

a dependency and package manager for Python.

It will add the `poetry` command to Poetry's bin directory, located at:

C:\Users\marek\AppData\Roaming\Python\Scripts

You can uninstall at any time by executing this script with the --uninstall option,

and these changes will be reverted.

Installing Poetry (1.8.3): Done

Poetry (1.8.3) is installed now. Great!

You can test that everything is set up by executing:

`poetry --version`

0x23 poetry shell指令失败

        继续执行后面的命令,结果发现又出现如下错误:要求python版本在3.8.1和3.12之间,且不包括3.12和3.9.7 真是晕😵(猜中了,但是不够精准啊,哈哈)

继续换3.11版本。安装完后,为了不产生版本 间的干扰,顺便把3.6 /3.12的都 uninstall掉。

继续运行 poetry shell, 结果算是捅了马蜂窝了,以下是我部分的尝试方式截图,请参考:

marek@PC-52520 MINGW64 ~

$ poetrt env info

bash: poetrt: command not found

marek@PC-52520 MINGW64 ~

$ poetrt env use /c/Software/Python311/python.exe

No Python at '"C:\Software\Python312\python.exe'

marek@PC-52520 MINGW64 ~

$ poetry config cache-dir

No Python at '"C:\Software\Python312\python.exe'

marek@PC-52520 MINGW64 ~

$ poetry env remove python

No Python at '"C:\Software\Python312\python.exe'

总之,关于poetry的不管什么命令,都提示No Python at '"C:\Software\Python312\python.exe' 像是着了魔。

 实在是没法弄了,就卸载, 并重新安装:

marek@PC-52520 MINGW64

$ curl -sSL https://install.python-poetry.org | python - --uninstall

Removing Poetry (1.8.3)

marek@PC-52520 MINGW64

$ curl -sSL https://install.python-poetry.org | python -

Retrieving Poetry metadata

# Welcome to Poetry!

This will download and install the latest version of Poetry,

a dependency and package manager for Python.

It will add the `poetry` command to Poetry's bin directory, located at:

C:\Users\marek\AppData\Roaming\Python\Scripts

You can uninstall at any time by executing this script with the --uninstall option,

and these changes will be reverted.

Installing Poetry (1.8.3): Done

Poetry (1.8.3) is installed now. Great!

You can test that everything is set up by executing:

`poetry --version`

0x3 问题解决

        简单来讲,就是卸载poetry 然后再安装。

       curl -sSL https://install.python-poetry.org | python - --uninstall

       curl -sSL https://install.python-poetry.org | python

0x4 一点感想

      一个好的guide 应该包括:前置条件,操作过程,后置条件,注意事项等。这样会避免更多坑,而且使我们的工作更顺利。比如老板的这个guide,如果定义了前置条件:git-bash最新版,phthon用3.8以上,3.12一下,且不能是3.9。不能在powershell下操作 等等。那就会好很多。后置条件也应该有,如果正确安装成功,通常要做那些操作验证成功,以及异常情况有哪些,避免那些误操作等。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值