Tikfollowers

Bash venv bin activate permission denied. com/nav6q/prompt-management-system.

3以降のPythonをインストール済みの方はvenvを別途インストールすることなく利用可能です。 Oct 27, 2011 · When you create an environment, it sets up a bin directory. Oct 2, 2017 · PermissionError: [Errno 13] Permission denied: '/tmp/pip-build-exot00s_' Though in this way all necessary scripts (e. Oct 18, 2023 · For example, if you are using Bash, you can try using Zsh or Fish to activate the venv. env/bin/activate && pip install djangocms-installer become: yes But it is still saying permission denied. Then you can just run . csh, bin/activate. Sep 3, 2020 · Before you try this solution, try running sudo su Then repeat your solution, If it works cool. 3以降の標準ライブラリとして提供されており、バージョン3. Aug 10, 2022 · In my case when it kept telling me it does not have permission to access deactivate. 3 になってからvenvとして標準機能となりまし May 9, 2019 · app_env\Scripts\activate. エラー回避方法についてご教示下さい。. Jan 17, 2017 · However this same thing happened to me when I accidentally ran python -m venv venv before installing python-venv (change according to your python version) in Ubuntu. This returned the message below: Successfully installed pip-21. 3. $ python3 -m venv scraping #仮想環境の作成. " Sep 20, 2023 · Turn off auto-activation: "python. Nov 28, 2016 · I've been playing around with bypassing the venv 'activate' by calling the virtual environment's python interpreter directly. 2. activate) are created in venv before pip, and pip files themselves seem to be present and working, until I really try install anything. 8 Steps to Reproduce shubha Apr 21, 2021 · If your code is pasted correctly, your problem is that you are trying to execute a directory with your she-bang, not Python, because you have a space rather than a slash as a separator: Apr 8, 2024 · Deactivation with the current terminal environment variable activation experiment has some limitation as previously mentioned in: #22037. Also, in case it is helpful, the Python component uses the keras package. If you’re using bash or zsh, use: source <venv>/bin/activate. Mar 28, 2019 · After creating python virtual environment virtualenv -p python3 venv and activating it source venv/bin/activate, i am trying to install python packages using pip command-> pip install Flask which throws permission errors: May 28, 2019 · Those are "venv" and "virtualenv". You can activate the created virtual environment by running the following command in the same directory where you executed the last command: cd env Sep 1, 2020 · python3 -m venv venv. I have tried adding an . I get this output of the cell: /bin/bash: 'gdrive/My Drive/path/myfile : Permission denied. If you created your venv in the myvenv directory, the command would be You need to specify the full path to the python interpreter in the venv plus the full path to the program that you want to run which is also in the venv. python --version. In that bin directory are all the executables relating to the environment. exe venv\Scripts\activate. In this environment, I need to install with the steps in the following document. – Sam Roberts. My solution was: Create your venv like normal (non-root user): python -m venv <venv_name> Activate your venv: source venv/Scripts/activate May 10, 2016 · 0. You switched accounts on another tab or window. Another user changing their home directory permissions to deny others access wouldn’t really be “wrong”, but highlights the issue of using anyone’s home directory as the location for a shared resource. Feb 8, 2020 · TL;DR: chmod a+x boot. Later run a comparison module on those files. You may see this at the top of scripts often: #!/usr/bin/env python Oct 6, 2021 · Follow these steps: Open the interpreter selection widget - either press the Python 3. tech/p/recommended. $ python3 -m venv venv. I've also tried to run the virtualenv command in the directory /usr/local/bin, and it gives me the same result: -bash: virtualenv: command not found. env/bin/activate' and that works fine, but I want it to do it from my user, not from root. And also return ACTIVATED venv bash prompt. I could not use sudo at all (corporate laptop). Make sure to also initialize the variables that deactivate shell hook relies on: #22037 (comment). 12. NOTE: Also you want to add shebang line to to the top of your python script with the path to python interpreter which sits in your env. And activated it like this: $ source venv/bin/activate. 3) If there is no . Hence we need to add it manually to shell initialization script (~/. bin/easy_install, bin/easy_install2. sh script as that user. Aug 4, 2020 · Error: [Errno 13] Permission denied: '/home/flasky/venv' The command '/bin/sh -c python3 -m venv venv' returned a non-zero code: 1 The text was updated successfully, but these errors were encountered: In the new approach, we do not run <venv>/<bin>/activate script which traditionally registers the deactivate shell hook. any ideas how to overcome the permissions? May 4, 2017 · Stack Exchange Network. venvで仮想環境を構築しようと以下のコマンドを実行したところ. i tried it but it's saying -bash: venv/bin/activate: Permission denied i installed the virtual envrioment using python3 -m venv venv Aug 27, 2019 · Stack Exchange Network. Jun 4, 2021 · Things will work if I put myself as a superuser but when I try to activate vs code I then get this error: you are trying to start Visual Studio Code as a super user which isn't recommended. The rest of that answer is focused on #2 remaining outside the venv, and #3 being in it. I then proceed to activate it. 810 2 16 36. populated config files : /Users/zavierlyu/. and then source myenvname/bin/activate no file (there are only 2 folders lib and include) To fix that I did sudo apt-get install python3-venv. venv/bin/activate : The term 'venv/bin/activate' is not recognized as the name of a cmdlet, function, script file, or. However, when I try running . If you want to install a venv in your current directory, you can omit the path altogether. 88. Else. Finally sudo chmod -R 755 /home/tone did the work! I don't know if it's a good practice to do that, simply grant permission all groups for read and execution of entire home directory but well, it's a good workaround for now. venv/bin/activate Aug 3, 2018 · 個人的にはactivateで仮想環境に入るほうが好き。pythonやpipコマンドの実行とかしやすいから。 2の方法は、仮想環境をactivateで起動。仮想環境上で もpythonやpipコマンドは正常に機能する。戦闘に". 6: bad interpreter: Permi Jul 5, 2021 · 我刚刚开始一个新的python项目,并通过在终端中运行virtualenv venv在项目文件夹中创建了一个venv. Jan 13, 2023 · cd bin (pyt38) [redhat@localhost bin]$ source activate (pyt38) [redhat@localhost bin]$ I am entering the pip virtual environment. py explicitly. venv file in the project's root so the extention opens automatically the virtual enviroment as Python interpreter every time I open vscode. Here’s a simple example: source venv/bin/activate. /venv/bin/activate and venv/bin/activate, both gave me -bash: venv/bin/activate: Permission denied. Mar 22, 2023 · When typing from local user the following command: 'source . and then source myenvname/bin/activate works good (enter into virtual environment) 👍 3. 7 on Mac OS X I get the following error: Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: activate_this. Also for number 1, doesnt the ". bashrc. Virtualenv is an external one. bat # In PowerShell venv\Scripts\Activate. ) To execute a script such as a Python script, you also need read permission. This will create a new folder called env inside the directory where you executed the command. You signed out in another tab or window. Then, I try to install my package python setup. Enot. I'm trying to run a file (an executable) in google colab I mounted the drive and everything is ok however whenever i try to run it using : ! 'gdrive/My Drive/path/myfile'. Oct 30, 2023 · Wed Nov 01, 2023 3:27 am. /venv/bin/activate: Permission denied. If i remember correctly then virtual env does a lot of path and environment variables manipulation. ) In theory, every shell Jan 1, 2015 · I can't make any sense of it. venvは手軽に仮想環境を作成・管理することができるツールです。 また、venvはPythonバージョン3. May 18, 2017 · Prompt is changed only if the activation script contains necessary commands to change the prompt. 以前はvirtualenv をインストールして仮想環境を構築していましたが、Python 3. Apr 18, 2017 · You never explained in which SO are you workingSo if you are in Mac OS X you can easily fix it by giving eXecute permissions. venv/bin/activate This works. Here's what the three lines do: Call the Python module venv and create a new virtual environment in the directory venv. 0. I use fish mostly, but this problem is also when running bash. conda version : 4. – Eugene Morozov Feb 19, 2021 · I have created a virtual environment like this: $ python3 -m venv venv. $ {VENV}/activate. ) To get pip working, you must correct the python interpreter in the pip file, this as well has a static interpreter location set by virtualenv in the creation process. The problem here is that flasky do not have permission to execute the script. Jun 14, 2024 · VS code in windows using bash; Remote SSH (v0. and python 3 -m venv myenvname. 当我们在虚拟环境中使用pip时,可以通过添加–user选项来避免权限问题。. – Dec 31, 2022 · Create the virtual environment in a desired directory using the following command: python -m venv env. venv folder, first create venv and next activate it. /venv/bin/activate This gave me an error: -bash: . Jul 5, 2019 · 該当のソースコード. I believe Linux may face the very same problem altought I myself never got this problem under Linux. source myenv/bin/activate. 2) install cmake, this is needed to compile numpy (since it's not found already precompiled in pipy, if this is not installed pip tells you "ERROR: Failed building wheel for ninja". 0) WSL (v0. Nov 15, 2021 · I fisrt had a lot of issue (upgrade. env/bin/activate: Permission denied'. Than you can enable permissions for reading the /dev/ttyS10 for your user and run python script by that user. May 18, 2018 · Create a file called "make-venv" like this: #!/bin/bash source . 7 on Mac OS X I get the following error: Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: Feb 26, 2020 · Saved searches Use saved searches to filter your results more quickly To activate: $ bash --init-file PythonVenv/bin/activate. /. All is fine, it works. In cmd terminal: venv\Scripts\activate. This uses the ‘activate’ script located in the ‘Scripts’ directory of your virtual environment. Aug 26, 2021 at 17:52. venvするタイミングで有効になってる python が使われそうです。 source . But I think (just an idea) the issue is some sort of missing or broken link that is only accessible through source, because to activate I also used source . My conda version is: conda 4. conda-build version : 3. 2) Python is installed and executed in ubuntu (v2024. Apparently, venv is installed with newer versions of Python, but when I type pip3 show venv, I get this message: WARNING: Package(s) not found: venv. bash_profile. As an example, see this backup script which runs the Amazon aws cli command, installed into a venv, run from a shell script: Mar 4, 2019 · venv/bin/python: Permission denied (venv is my virtual env). If I execute the source command manually in the fish shell everything works fine but running it with the Dec 16, 2023 · python -m venv . scraping/bin/activate #ここでエラー発生. Venv is a library that already comes with your python installation. Here to run the script you have to type python . Find all python within python ls /usr/bin/python* And then I want to use activate to switch the env but it shows: -bash: /anaconda3/bin/activate: Permission denied. Now that I have used git to load my files into python anywhere. Sep 16, 2021 · I made a very simple fish shell script to activate an specific python virtual environment. Mar 15, 2017 · Mar 14, 2017 at 18:46. I have also downloaded all of the necessary packages into my virtual environment. Had to remove manually and rerun command. 11-venv. Some are scripts. Dec 16, 2019 · 7. hows. (See the Description section of chmod(1) for more info. You may edit the activate scripts and disable the above conditional block, for all future venv activations, by replacing its 1st line with this: if false; then. ) To get easy_install working? i have problem with terminal Permission denied in any command or when try activate venv bin/sh: /usr/bin/ksplice: /usr/bin/python3. venv/bin/activate. And I am blocked. /make-venv Now, make-venv activates virtualenv before every command runs. To deactivate: $ exit OR [CTRL]+[D] This exits the entire shell the venv is in, and drops you back to the original shell from before the activation script made any changes to the environment. is the same as source) – C_Z_. 1) Any help is appreciated :) Have a good day! I tried using deactivate to exit the python venv. When I used sudo it could not find deactivate. On OS X and Linux, do the following: $ . In such cases if you have the root password you can change the file permission this way: If you don't like to give the x flag you can use 744. 0, activate another virtualenv, run myapp v2. readthedocs. source . Sep 6, 2016 · Now, whenever you want to work on a project, you only have to activate the corresponding environment. bin/activate cd ~/path-to-master-project-folder ls -a I was getting a permission denied error, so I ran chmod u+x <script file>. Sep 26, 2022 · /python3 -m venv venv/ --without-pip to generate 'activate' file in venv/bin folder 👍 16 xiaodaiacg, awwalm, dmlerner, JacobPiela, mrseyed, jimieguang, hoonlight, TouyaAkira, yosun, hdh999, and 6 more reacted with thumbs up emoji 🎉 5 jimieguang, SerTimBerrners-Lee, hdh999, oh-pi, and Nid77 reacted with hooray emoji Nov 11, 2022 · Then I went ahead and tried the following, but it is not going through. venv/bin/activate $2 Then add this to the first line of your Makefile. bin/pip, bin/pip2, bin/pip2. In the new window that popup select Existing Environment > Select the shell script which you created python-sudo. Nov 25, 2019 · zsh: permission denied: . $ {VENV}/deactivate. I tried source app_env/bin/activate (hoping) and that resulted in "Permission denied" May 14, 2018 · sudo chown -R your_username:your_username path/to/virtuaelenv/. I get these errors when trying to run a python script You signed in with another tab or window. /venv/bin The only other examples of my problem occurred with users who altered their permissions prior to the problem arising, not when dealing with virtual environments, so I haven't been able to find a proper solution for my case. Even if I try to do it manully from the extension Python: Select Interpreter option selecting the . "をつけないと"permission denied"って言われる場合がある。 Oct 28, 2021 · For this to be answerable, we'd need to see a much longer transcript -- the command you used to create the venv, its output, the command you use to activate the venv, any other commands you ran between the two. – . If installed venv on a Windows machine, run this command (assuming you are in the working directory that has your venv folder): In bash terminal: source venv/Scripts/activate. x text button on the bottom right corner of the window or press Ctrl + Shift + P and start typing "Python Interpreter" until the option to select the widget shows up. terminal. cache" folder - the warning says or its parent directory is not owned by the current user - you're running it via sudo which means the current user is root - not user1 One way to do that would be to write a bash script (that's what I have currently). I tried cd'ing to scripts folder and other folders and running deactivate. I've found a few points of documenation and already attempted what they have done. /Envs/AppSiteEnv/bin. Click the "Add new environment" option. No such a file ****. pip install Django. 现在,我们可以使用pip来安装和管理Python包,而不会出现“Permission denied”错误。. IOError: [Errno 13] Permission denied with pip installation. Turns out my bin/activate file had CR/LF line endings instead of just CR, changing them with (tr -d '\r' < bin/activate) > bin/activatefixed my problem. There's been no changes to the host box and my application seems to run without issues, but it's just odd. venv/bin/activate. bashrc for example) which is executed automatically when a terminal starts. My steps to install numpy in a virtual env in a fresh burn of bookworm: 1) install python3. This starts a new shell around the venv. Jun 29, 2023 · venvとは. I expected the (venv) to go away in terminal. 1. /env/bin/activate and I get permission denied. Jun 24, 2023 · If you try to execute the activate binary, you’ll get this message: <venv>/bin/activate: cannot execute - Permission denied. Dec 31, 2017 · cd ~/path-to-virtual-environment . 7 -m venv myenvname. io Development Installation — Read the Docs developer documentation 9. You are running as user flasky inside the container USER flasky and as a result executing the boot. py is used when you don't want to source in #1, nor write a wrapper bash script to do the sourceing, and you need #2 to be in the venv, even though it wasn't active when it was launched (that where the end of that answer comes in). Jun 14, 2012 · From reading tutorials, i read there are 2 ways to activate virtual env: . do? i have problem with terminal Permission denied in any command or when try activate venv bin/sh: /usr/bin/ksplice: /usr/bin/python3. venv/bin/activate from the same directory (. But after the update of the vscode server in WSL this is not happening anymore. operable program. This is why the files created by virtualenv on WSL are not recognized by Windows (and the files created by virtualenv on Powershell will not be usable in WSL). Try chmod u+rx filename. But I don't know the statement to use in my script to deactivate my virtual enviroment. But I would like to add some more dynamics there (take some optional arguments etc) which would be easier with python. I recommend you to stick with venv because it works pretty ok and you don´t need to do extra job installing external libraries. そこで既存の環境からは隔離された仮想の実行環境を作る方法として、ここではvenvを使ってみましょう。. /scripts/replace-md5sums. Rprofile file (to the folder with the app) that includes source venv/bin/activate. May 20, 2022 · OpenBSD General Other questions regarding OpenBSD which do not fit in any of the categories below. drwxr-xr-x 3 Bob staff 96 Apr 5 17:55 included Just had the same problem, and decided to do hexdump -C bin/activate to figure out. condarc. Your original bash shell remains unmodified. I'm trying to make sure my virtual environment is working in python anywhere. 然后,通过以下命令激活虚拟环境:. So instead of: source ~/venv/bin/activate one can use: ~/venv/bin/python3 my_script. 7. activateEnvironment": false, and reload the window & reopen the shells. Next I installed django and djangorestframework like so: Oct 19, 2019 · 1. Directory showing apache owns the file: [user@host bin]$ pwd. 3 May 8, 2019 · and python3. 4. Jul 6, 2020 · A typical umask such as 0022 will not block the user execute bit, but a umask like 0122 can. sh or chmod o+x boot. bin/activate in your shell. I think they both accomplish the same thing, but i dont understand whats going on. bash: venv/bin/activate: No such file or directory. 112. Thanks. py install, and it works fine: Dec 24, 2018 · When trying to create a virtualenv using a brew-installed Python 2. Then click OK > and then Click Apply. 0. Part 2 =====> Check your python version. S C:\Windows\system32\xxxxx> venv/bin/activate. We then have made effort to inserting deactivate script path from Python extension to user to work around this, but I can see the permission issue for remote scenarios. Oct 26, 2018 · venvで仮想環境を作る(Mac). py I pass the path to my virtual environment python interpreter via the shell's rc file (In my case, ~/. If this was intended, please specify an alternate user data directory using the --user-data-dir argument. The fact that prompt hasn't changed doesn't indicate that the virtualenv wasn't activated. これは、activateファイルが作られていない Apr 27, 2011 · There are times where the user you are currently logged with just don't have the permission to change file mode bits. total 60. fish. I activate one virtualenv, run myapp v1. I would appreciate some guidance. Probably inefficient, but functional. As you may know, hashbangs are used to tell the system what interpreter to use to run the script. Sep 23, 2016 · Now open your pycharm and project you need to run/debugg the go to setting > project:projectname > Python Interpreter Click on Wheel Icon and Then click on "Add". Most likely after I installed python-venv and ran it again it didn't overwrite the existing venv folder. g. As for why the files are so much larger in the Windows python3 -m venv venv This worked to create the env folder and a virtual environment. venv/bin/activate I'm running the Terminal in VSCode through a remote SSH connection. Preventing Future Permission Issues To prevent future ‘Permission Denied’ errors when activating a venv in Python 3, it is important to follow best practices: Dec 8, 2021 · PYTHON : Permission denied when activating venv [ Gift : Animated Search Engine : https://www. Please help. 5. When I use app_env\Scripts\activate it says command not found. answered Mar 13, 2015 at 17:49. Mar 27, 2023 · If you created your venv in a directory called myenv, the command would be: # In cmd. activate してみます。期待通りの python を実行できそうです。何が起きたのでしょう? Mar 13, 2015 · 2. Feb 1, 2020 · I'm trying to allow users to create their own virutalenv for python3, however when trying to create said environment using a standard user account with this command: $ python3 -m venv ~/path/to/venv. Even running it as bash virtualenv_blah. sh. Check the spelling of the name, or if a path was included, verify that the path is Feb 14, 2017 · Inside the script, I can activate the virtual enviroment with this statement: . Here is the output: drwxr-xr-x 12 Bob staff 384 Apr 5 17:55 bin. Now that the venv is activated, install Django. In this example, we’re using the source command followed by the Feb 27, 2024 · I assume he did something wrong by accident, but don’t know why it’s impacting my environments. The 'magic words' are the following : chmod 755 <your path>/virtualenv. py Sep 10, 2011 · source is an builtin shell command in bash, and is not available in sh. user config file : /Users/zavierlyu/. @KonstantinSuvorov Thanks for the response, I have tried running the following task: - name: Install Django-CMS Insaller command: . Jan 6, 2023 · Instead of being put in a folder venv the contents were put into your directory Alloy_Defender. 使用–user选项. venv/bin/activateしたら実行されるもの. dev. These are the PATHs I added to my . You can do this via the command source venv/bin/activate. The script now runs, but the VE does not activate and while the project folders are listed, the shell is not in the master project folder. answered Oct 30, 2021 at 21:41. . –user选项告诉pip将包安装到 I'm submitting a bug report feature request Current Behavior I am unable to deactivate my active conda environment, and when I try to do so, I get a permission denied message. bin/activate, bin/activate. If you want to disable the prompt for all subsequent venv activations (during your shell Mar 11, 2023 · I have the . I had the same problem before and the solution is very simple. Or add the deactivate shell hook to the very end of ~/. P. Creating a virtualenv in Windows Subsystem for Linux will create a virtualenv that is meant to run on Linux, not on Windows. 6: bad interpreter: Permi Jan 17, 2023 · have you activated the virtual enviroment ? source venv/bin/activate. venv folder, activate the venv and return ACTIVATED venv bash prompt. よろしくお願いします Sep 17, 2017 · Just to point out - you were misinterpreting But I can see that "user1" is the owner of the ". [user@bhost bin]$ ls -l. sh did not work proxy errors pip upgrade ) Now, this. I can 'sudo bash' and then 'source . bashrc file and restart the shell. On Linux and MacOS, we activate our virtual environment with the source command. 8. 以下のエラーが出力されました。. ~/path/to/venv is already created and is owned by the standard user. Oct 5, 2020 · Also if you want to know the Python installation directory on Windows, you can do it by opening a cmd terminal (if you're currently in a Powershell terminal you can use the command start cmd to do this) and use the command where python, this will print out all Python installation locations on your system path. Within this virtual environment I updated pip like this: (venv)$ python -m pip install -U pip. ps1 Linux and MacOS venv activation. My question is: What does the . Also sudo May 20, 2020 · I want to be able to do such a thing vith my script p and venv: $ p v 1) If there is already activated venv, do nothing 2) If there is a . I cd'd into the venv folder to check my permissions. where venv is the folder name for your virtual environment. Thank you! Aug 5, 2019 · So, in my home directory, as the current user I create a virtualenv: python -m virtualenv -p python3 venv, and all is fine. How can that be fixed? Sep 7, 2023 · Activating a virtual environment in Python is straightforward. py and execute the script again. I can't do this: . 但是,当我运行venv / bin / activate时,我得到一个权限被拒绝错误. No success with changing permissions. Then the local pip installation will take over the system one. source venv/bin/activate. So, I tried installing it: So, I tried installing it: Mar 16, 2021 · Chad Kusuno is having issues with: When I'm trying to load the virtual environment in VS code, I run the . SHELL=. " just mean the current folder? but it doesnt work if i just type in "venv/bin/activate" without the ". $ . Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers. Jun 30, 2015 · The virtualenv is indeed installed in /usr/local/bin, but whenever I try to run the virtualenv command, the command is not found. When a launch the following commands as root, it is working good, but as netbox user, it is not: 遭遇したエラー. Reload to refresh your session. env/bin/activate' returns 'bash: . 9. I get this error: Error: [Errno 13] Permission denied: '~/path/to/venv'. This is possible because activate is a file inside bin directory in the virtual enviroment. Mar 15, 2017 at 9:55. Run the script to activate the virtual environment that is located in the path venv/bin/activate. #実行するとそのようなファイルやディレクトリは存在しないと表示される. The reason you’re seeing this message is that it needs to be sourced, not executed. $ source venv/bin/activate. html ] PYTHON : Permission denied when May 12, 2017 · After you create the virtual environment, you need to activate it: $ virtualenv myenv $ source myenv/bin/activate (myenv) $ pip install pytest or for Python 3: $ virtualenv -p `which python3` myenv $ source myenv/bin/activate (myenv) $ pip3 install pytest When you are finished using the environment, you can deactivate it like so: $ deactivate Jan 30, 2020 · Therefore, to immediately revert back to your old PS1, type: export PS1="$_OLD_VIRTUAL_PS1". I tried using: #! /opt/rh/rh-python36. May 15, 2019 · I'm trying to use the '#! /usr/bin/python3' on a centos7 but since I had to install Python3 via: Yum install centos-release-scl Yum install rh-python36 scl enable rh-python36 bash The Python3 isn't in the /usr/bin/python3. 我努力了sudo chown -R user:user project/venv但我明白了chown: user: illegal group name我已经将这些venvs设置了很多次,从来没有 Dec 24, 2018 · When trying to create a virtualenv using a brew-installed Python 2. sh wont work since this will simply create the environment inside the sub-shel I created *and activated a venv as a regular user in Git Bash within VS Code running on Windows 11 and got a "permission denied" when trying to run pip. What's the problem? Here's the info of my anaconda: active environment : None. ar js lg of ga gp ww um ze wc