Unable to locate package python-pip Ubuntu 20.04

前端 未结 6 1421
故里飘歌
故里飘歌 2020-12-11 02:05

I am trying to install mininet-wifi. After downloading it, I have been using the following command to install it:

    sudo util/install.sh -Wlnfv
         


        
6条回答
  •  孤街浪徒
    2020-12-11 02:33

    I specifically needed a Dockerfile file and this is what I have put inside so that it works without errors, I hope it will help someone.

    This is Dockerfile file:

    FROM ubuntu:latest
    RUN apt-get update -y
    RUN apt-get install -y python3 python3-dev
    WORKDIR /app
    COPY .  /app
    ENV DEBUG=True
    EXPOSE 80
    

提交回复
热议问题