Create a new VirtualenvUbuntu Software Centre Issue (unity 11.10) after broken sun-java6-jre package installationtrying to install mysql-connector for python 3How to remove requests from python and install in pip

Writing a letter of recommendation for a mediocre student

Is it impolite to ask for an in-flight catalogue with no intention of buying?

Two trains move towards each other, a bird moves between them. How many trips can the bird make?

How do you use the interjection for snorting?

Would the same counter be used for a slice of pizza and a whole one?

Can the U.S. president make military decisions without consulting anyone?

To what extent is it worthwhile to report check fraud / refund scams?

Worms crawling under skin

What is the meaning of "heutig" in this sentence?

Going to France with limited French for a day

Can I take NEW (still in their boxes) PC PARTS in my checked in luggage?

Is "ln" (natural log) and "log" the same thing if used in this answer?

Making Eggs for 50 people

If an object moving in a circle experiences centripetal force, then doesn't it also experience centrifugal force, because of Newton's third law?

Hiking with a mule or two?

Is it possible to encode a message in such a way that can only be read by someone or something capable of seeing into the very near future?

Is the mass of paint relevant in rocket design?

Why does NASA publish all the results/data it gets?

What benefits does the Power Word Kill spell have?

Are there any adverse impacts if I keep WiFi router on all time?

2000s Animated TV show where teenagers could physically go into a virtual world

Can a broken/split chain be reassembled?

Is it impolite to ask for halal food when traveling to and in Thailand?

Co-Supervisor comes to office to help her students which distracts me



Create a new Virtualenv


Ubuntu Software Centre Issue (unity 11.10) after broken sun-java6-jre package installationtrying to install mysql-connector for python 3How to remove requests from python and install in pip






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am a beginner user in Ubuntu , I have some issue. so please help me.



ghaas0ab@dem0:~$ pip install virtualenv
Requirement already satisfied: virtualenv in /usr/lib/python2.7/dist-packages (15.1.0)


What's mean this message ? and how to install virtualenv?



Thank you,










share|improve this question



















  • 4





    The message says you already have it.

    – dsstorefile1
    May 2 '18 at 6:35

















0















I am a beginner user in Ubuntu , I have some issue. so please help me.



ghaas0ab@dem0:~$ pip install virtualenv
Requirement already satisfied: virtualenv in /usr/lib/python2.7/dist-packages (15.1.0)


What's mean this message ? and how to install virtualenv?



Thank you,










share|improve this question



















  • 4





    The message says you already have it.

    – dsstorefile1
    May 2 '18 at 6:35













0












0








0








I am a beginner user in Ubuntu , I have some issue. so please help me.



ghaas0ab@dem0:~$ pip install virtualenv
Requirement already satisfied: virtualenv in /usr/lib/python2.7/dist-packages (15.1.0)


What's mean this message ? and how to install virtualenv?



Thank you,










share|improve this question














I am a beginner user in Ubuntu , I have some issue. so please help me.



ghaas0ab@dem0:~$ pip install virtualenv
Requirement already satisfied: virtualenv in /usr/lib/python2.7/dist-packages (15.1.0)


What's mean this message ? and how to install virtualenv?



Thank you,







command-line system-installation software-installation






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked May 2 '18 at 6:25









AzizAziz

11 bronze badge




11 bronze badge










  • 4





    The message says you already have it.

    – dsstorefile1
    May 2 '18 at 6:35












  • 4





    The message says you already have it.

    – dsstorefile1
    May 2 '18 at 6:35







4




4





The message says you already have it.

– dsstorefile1
May 2 '18 at 6:35





The message says you already have it.

– dsstorefile1
May 2 '18 at 6:35










2 Answers
2






active

oldest

votes


















1
















It means that virtualenv tool is already installed in your local
system. Now to activate virtual environment in your laptop, proceed
as follows:



Create the virtualenv:



 $ cd <working_dir> # move into the dir where you want to create venv
$ virtualenv venv


NOTE: If you have both Python 3 and Python 2 installed, try this command instead of virtualenv venv,
it creates an isolated Python 3 environment called venv in your
current directory



 $ virtualenv venv -p $(which python3)


Run venv:



 $ source venv/bin/activate


Exit:



 (venv)$ deactivate # to exit the environment





share|improve this answer


































    1
















    The message means you already have installed virtualenv, so there's no need to install it again.



    In order to activate it, try to copy + paste following commands:



    virtualenv -p python3 .venv



    source .venv/bin/activate



    for checking your pip packages:



    pip freeze



    for deactivating:



    deactivate



    if this does not work for you try this way:



    python3 -m venv .venv



    but in this case try to ignore the pkg-resources==0.0.0 in your venv otherwise it will give conflict in requirements, ones you transfer your files to someone else.






    share|improve this answer






















    • 1





      Hi sebuhi, welcome to Ask Ubuntu. Please try to use proper grammar when posting answers.

      – Aaron Franke
      Apr 16 at 3:39











    • @Zanna You already corrected it.

      – Aaron Franke
      Apr 16 at 5:00











    • @AaronFranke Sorry for that, I was too sleepy at that time, did not check my grammar. that is my fault, thank you Zanna for correcting the sentences.

      – sebuhi
      Apr 16 at 13:04













    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "89"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );














    draft saved

    draft discarded
















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1030919%2fcreate-a-new-virtualenv%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1
















    It means that virtualenv tool is already installed in your local
    system. Now to activate virtual environment in your laptop, proceed
    as follows:



    Create the virtualenv:



     $ cd <working_dir> # move into the dir where you want to create venv
    $ virtualenv venv


    NOTE: If you have both Python 3 and Python 2 installed, try this command instead of virtualenv venv,
    it creates an isolated Python 3 environment called venv in your
    current directory



     $ virtualenv venv -p $(which python3)


    Run venv:



     $ source venv/bin/activate


    Exit:



     (venv)$ deactivate # to exit the environment





    share|improve this answer































      1
















      It means that virtualenv tool is already installed in your local
      system. Now to activate virtual environment in your laptop, proceed
      as follows:



      Create the virtualenv:



       $ cd <working_dir> # move into the dir where you want to create venv
      $ virtualenv venv


      NOTE: If you have both Python 3 and Python 2 installed, try this command instead of virtualenv venv,
      it creates an isolated Python 3 environment called venv in your
      current directory



       $ virtualenv venv -p $(which python3)


      Run venv:



       $ source venv/bin/activate


      Exit:



       (venv)$ deactivate # to exit the environment





      share|improve this answer





























        1














        1










        1









        It means that virtualenv tool is already installed in your local
        system. Now to activate virtual environment in your laptop, proceed
        as follows:



        Create the virtualenv:



         $ cd <working_dir> # move into the dir where you want to create venv
        $ virtualenv venv


        NOTE: If you have both Python 3 and Python 2 installed, try this command instead of virtualenv venv,
        it creates an isolated Python 3 environment called venv in your
        current directory



         $ virtualenv venv -p $(which python3)


        Run venv:



         $ source venv/bin/activate


        Exit:



         (venv)$ deactivate # to exit the environment





        share|improve this answer















        It means that virtualenv tool is already installed in your local
        system. Now to activate virtual environment in your laptop, proceed
        as follows:



        Create the virtualenv:



         $ cd <working_dir> # move into the dir where you want to create venv
        $ virtualenv venv


        NOTE: If you have both Python 3 and Python 2 installed, try this command instead of virtualenv venv,
        it creates an isolated Python 3 environment called venv in your
        current directory



         $ virtualenv venv -p $(which python3)


        Run venv:



         $ source venv/bin/activate


        Exit:



         (venv)$ deactivate # to exit the environment






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Apr 16 at 9:58

























        answered Apr 16 at 9:07









        Sanchit KhareSanchit Khare

        112 bronze badges




        112 bronze badges


























            1
















            The message means you already have installed virtualenv, so there's no need to install it again.



            In order to activate it, try to copy + paste following commands:



            virtualenv -p python3 .venv



            source .venv/bin/activate



            for checking your pip packages:



            pip freeze



            for deactivating:



            deactivate



            if this does not work for you try this way:



            python3 -m venv .venv



            but in this case try to ignore the pkg-resources==0.0.0 in your venv otherwise it will give conflict in requirements, ones you transfer your files to someone else.






            share|improve this answer






















            • 1





              Hi sebuhi, welcome to Ask Ubuntu. Please try to use proper grammar when posting answers.

              – Aaron Franke
              Apr 16 at 3:39











            • @Zanna You already corrected it.

              – Aaron Franke
              Apr 16 at 5:00











            • @AaronFranke Sorry for that, I was too sleepy at that time, did not check my grammar. that is my fault, thank you Zanna for correcting the sentences.

              – sebuhi
              Apr 16 at 13:04















            1
















            The message means you already have installed virtualenv, so there's no need to install it again.



            In order to activate it, try to copy + paste following commands:



            virtualenv -p python3 .venv



            source .venv/bin/activate



            for checking your pip packages:



            pip freeze



            for deactivating:



            deactivate



            if this does not work for you try this way:



            python3 -m venv .venv



            but in this case try to ignore the pkg-resources==0.0.0 in your venv otherwise it will give conflict in requirements, ones you transfer your files to someone else.






            share|improve this answer






















            • 1





              Hi sebuhi, welcome to Ask Ubuntu. Please try to use proper grammar when posting answers.

              – Aaron Franke
              Apr 16 at 3:39











            • @Zanna You already corrected it.

              – Aaron Franke
              Apr 16 at 5:00











            • @AaronFranke Sorry for that, I was too sleepy at that time, did not check my grammar. that is my fault, thank you Zanna for correcting the sentences.

              – sebuhi
              Apr 16 at 13:04













            1














            1










            1









            The message means you already have installed virtualenv, so there's no need to install it again.



            In order to activate it, try to copy + paste following commands:



            virtualenv -p python3 .venv



            source .venv/bin/activate



            for checking your pip packages:



            pip freeze



            for deactivating:



            deactivate



            if this does not work for you try this way:



            python3 -m venv .venv



            but in this case try to ignore the pkg-resources==0.0.0 in your venv otherwise it will give conflict in requirements, ones you transfer your files to someone else.






            share|improve this answer















            The message means you already have installed virtualenv, so there's no need to install it again.



            In order to activate it, try to copy + paste following commands:



            virtualenv -p python3 .venv



            source .venv/bin/activate



            for checking your pip packages:



            pip freeze



            for deactivating:



            deactivate



            if this does not work for you try this way:



            python3 -m venv .venv



            but in this case try to ignore the pkg-resources==0.0.0 in your venv otherwise it will give conflict in requirements, ones you transfer your files to someone else.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited May 21 at 5:10

























            answered Apr 15 at 22:02









            sebuhisebuhi

            93 bronze badges




            93 bronze badges










            • 1





              Hi sebuhi, welcome to Ask Ubuntu. Please try to use proper grammar when posting answers.

              – Aaron Franke
              Apr 16 at 3:39











            • @Zanna You already corrected it.

              – Aaron Franke
              Apr 16 at 5:00











            • @AaronFranke Sorry for that, I was too sleepy at that time, did not check my grammar. that is my fault, thank you Zanna for correcting the sentences.

              – sebuhi
              Apr 16 at 13:04












            • 1





              Hi sebuhi, welcome to Ask Ubuntu. Please try to use proper grammar when posting answers.

              – Aaron Franke
              Apr 16 at 3:39











            • @Zanna You already corrected it.

              – Aaron Franke
              Apr 16 at 5:00











            • @AaronFranke Sorry for that, I was too sleepy at that time, did not check my grammar. that is my fault, thank you Zanna for correcting the sentences.

              – sebuhi
              Apr 16 at 13:04







            1




            1





            Hi sebuhi, welcome to Ask Ubuntu. Please try to use proper grammar when posting answers.

            – Aaron Franke
            Apr 16 at 3:39





            Hi sebuhi, welcome to Ask Ubuntu. Please try to use proper grammar when posting answers.

            – Aaron Franke
            Apr 16 at 3:39













            @Zanna You already corrected it.

            – Aaron Franke
            Apr 16 at 5:00





            @Zanna You already corrected it.

            – Aaron Franke
            Apr 16 at 5:00













            @AaronFranke Sorry for that, I was too sleepy at that time, did not check my grammar. that is my fault, thank you Zanna for correcting the sentences.

            – sebuhi
            Apr 16 at 13:04





            @AaronFranke Sorry for that, I was too sleepy at that time, did not check my grammar. that is my fault, thank you Zanna for correcting the sentences.

            – sebuhi
            Apr 16 at 13:04


















            draft saved

            draft discarded















































            Thanks for contributing an answer to Ask Ubuntu!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1030919%2fcreate-a-new-virtualenv%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Tamil (spriik) Luke uk diar | Nawigatjuun

            Align equal signs while including text over equalitiesAMS align: left aligned text/math plus multicolumn alignmentMultiple alignmentsAligning equations in multiple placesNumbering and aligning an equation with multiple columnsHow to align one equation with another multline equationUsing \ in environments inside the begintabularxNumber equations and preserving alignment of equal signsHow can I align equations to the left and to the right?Double equation alignment problem within align enviromentAligned within align: Why are they right-aligned?

            Where does the image of a data connector as a sharp metal spike originate from?Where does the concept of infected people turning into zombies only after death originate from?Where does the motif of a reanimated human head originate?Where did the notion that Dragons could speak originate?Where does the archetypal image of the 'Grey' alien come from?Where did the suffix '-Man' originate?Where does the notion of being injured or killed by an illusion originate?Where did the term “sophont” originate?Where does the trope of magic spells being driven by advanced technology originate from?Where did the term “the living impaired” originate?