社区所有版块导航
Python
python开源   Django   Python   DjangoApp   pycharm  
DATA
docker   Elasticsearch  
aigc
aigc   chatgpt  
WEB开发
linux   MongoDB   Redis   DATABASE   NGINX   其他Web框架   web工具   zookeeper   tornado   NoSql   Bootstrap   js   peewee   Git   bottle   IE   MQ   Jquery  
机器学习
机器学习算法  
Python88.com
反馈   公告   社区推广  
产品
短视频  
印度
印度  
Py学习  »  Python

当我尝试python3版本时,它不能作为命令工作

learner • 4 年前 • 624 次点击  

我有以下docker文件:

FROM ubuntu:latest

RUN apt-get update \
  && apt-get install -y python3-pip python3-dev \
  && cd /usr/local/bin \
  && ln -s /usr/bin/python3 python3 \
  && pip3 install --upgrade pip
USER root
COPY scripts scripts
RUN ls
RUN pwd
RUN chmod +x ./scripts/functional_test_cli/baft.py
COPY tests tests
RUN pip3 install Pytest
RUN pip3 install pytest-json-report
RUN pip3 install Tavern
RUN pip3 install allure-pytest
RUN pip3 install pytest-pythonpath
RUN pip install --upgrade setuptools
RUN which python

RUN python3 version
CMD ["python3", "./scripts/functional_test_cli/baft.py"]

因此,当运行python3版本时,会抛出以下错误:

python: can't open file 'version': [Errno 2] No such file or directory

我有什么遗漏吗?为什么python3不被识别为命令?

Python社区是高质量的Python/Django开发社区
本文地址:http://www.python88.com/topic/51183
 
624 次点击  
文章 [ 3 ]  |  最新文章 4 年前