Не запускается anaconda navigator на windows 7

Anaconda (listed as "Python 3.6.0 (Anaconda 4.3.1 64 bit)" ) is in my programs and features list, but there is seeming no Anaconda Navigator desktop app, as their seems to be no icon on my desktop ...

Anaconda (listed as «Python 3.6.0 (Anaconda 4.3.1 64 bit)» ) is in my programs and features list, but there is seeming no Anaconda Navigator desktop app, as their seems to be no icon on my desktop and I am unable to search for it through «Start». Could this be because I have the 32-bit version of Anaconda downloaded and I have a 64-bit OS (I thought I should do this because Python on my computer was 64-bit) or because I downloaded Anaconda under «users» instead of Desktop. I also downloaded Anaconda twice, if that could be causing some of the problem. I have a Windows 10 laptop, if that is any help.

asked Jun 30, 2017 at 7:56

Nathan S.'s user avatar

Nathan S.Nathan S.

4491 gold badge4 silver badges5 bronze badges

7

Open up a command terminal (CTRL+ALT+T)
and try running this command:

anaconda-navigator

When I installed Anaconda, and read the website docs, they said that they tend to not add a file or menu path to run the navigator because there are so many different versions of different systems, instead they give the above terminal command to start the navigator GUI and advise on setting up a shortcut to do this process manually — if that works for you it shouldn’t be too much trouble to do it this way — I do it like this personally

answered Dec 7, 2017 at 8:13

raser's user avatar

raserraser

4274 silver badges10 bronze badges

0

How I solved this issue:
1. Be connected to the internet.
2. Open the Anaconda Prompt (looks like a regular command window).
If you installed the .exe in your /name/user/ location you should be fine, if not navigate to it.
Then start an environment.

conda info —envs

Then run

conda install -c anaconda anaconda-navigator

Press y when prompted (if prompted). It will being downloading the packages needed.

Then run your newly installed Anaconda Navigator

anaconda-navigator

It should start, and also appear in your regular windows 10 apps list.

answered Apr 13, 2019 at 4:17

wxmeddler's user avatar

wxmeddlerwxmeddler

1711 silver badge4 bronze badges

0

activate the virtual env with command:

 conda activate base

run anacond anavigator

 anaconda-navigator 

answered Feb 16, 2020 at 12:19

Ioan Beilic's user avatar

Ioan BeilicIoan Beilic

4437 silver badges12 bronze badges

0

when you will type anaconda in windows 10 search bar it will give you the list as
enter image description here
then in terminal you have to type anaconda-navigator as
enter image description here
it will start anaconda on your machine.

answered Jun 30, 2017 at 13:45

jarry jafery's user avatar

jarry jaferyjarry jafery

9781 gold badge12 silver badges25 bronze badges

3

Yet another option which worked in my case on Windows 10: Try uninstalling your previous installation, restart the system and run the installation again.

Make sure you don’t start any programs before installing Anaconda. You will find the installation finishes without prompting any kind of errors.

Type in Anaconda in your Windows 10 Search bar. You will find Anaconda Prompt appear.

answered Jan 20, 2018 at 22:52

Biswajit Roy's user avatar

Biswajit RoyBiswajit Roy

5082 gold badges9 silver badges18 bronze badges

I figured out the reason as to why:

1-There seems to be no navigator icon

2-When conducting the above steps of running the «anaconda-navigator» command in prompt (whether cmd or Anaconda) it yields «anaconda navigator is not recognized as an internal or external command»

This was very frustrating to me as I’d installed the proper version multiple times with no avail.

To solve this problem :

  • in the installation process, there will be an advanced options step with 2 selections one of which is unchecked (the top one). Make sure you check it which will add the navigator to the path of your machine variables.

Cheers,
Hossam

answered Feb 3, 2019 at 17:03

Hossam Antar Korin's user avatar

1

it works :

export PATH=/home/yourUserName/anaconda3/bin:$PATH

after that run anaconda-navigator command. remember anaconda can’t in Sudo mode, so don’t use sudo at all.

Conda Running Screenshot

answered Sep 26, 2018 at 14:26

Mohammad Heydari's user avatar

Mohammad HeydariMohammad Heydari

3,6932 gold badges24 silver badges33 bronze badges

1

I faced the same problem on Windows 10. As soon as I cleared my Path variable from edit environment variables option, the icon started to appear. It was occurring because I had previously installed python 3.6.1 on my computer and added it to my path variable as C:Python36;C:Python36DLL; and so on. There isn’t any need to uninstall Anaconda Navigator and start from scratch if you have correctly followed the steps mentioned at the documentation for it.

answered Jan 12, 2019 at 13:29

Anubhav Pandey's user avatar

Anubhav PandeyAnubhav Pandey

1,2651 gold badge13 silver badges18 bronze badges

Try restarting the system! You will be able to find the navigator once you restart the system after installation.

answered Feb 23, 2019 at 17:25

Saurav K Shastri's user avatar

Tried all solutions here but these 2 steps solved the issue:

1) manual update of open-ssl from here:
https://slproweb.com/products/Win32OpenSSL.html
2) update OpenSSL using conda update openssl command in the Anaconda Prompt

solved the issue!

answered Oct 13, 2019 at 23:10

Denis Evseev's user avatar

Denis EvseevDenis Evseev

1,6301 gold badge18 silver badges33 bronze badges

I had a similar issue today where only the prompt was available after installation.
Finally solved this by un-installing my regular python installation and then install anaconda(anaconda 3 v5.2.0, with python 3.6).

answered Sep 10, 2018 at 13:44

Patrick Cree's user avatar

I also have the issue on windows when i am unable to find the anaconda-navigator in start menu.
First you have to check anaconda-navigator.exe file in your anaconda folder if this file is present it means you have installed it properly otherwise there is some problem and you have to reinstall it.

Before reinstalling this points to be noticed
1) You have to uninstall all previous python folder
2) Check you environment variable and clear all previous python path

After this install anaconda
your problem will be resolved if not tell me the full error i will try to solve it

answered Jan 18, 2019 at 19:15

Vaibhav Chawla's user avatar

Uninstall your Anaconda, delete the folder where it was. Then reinstall it.

answered Feb 5, 2019 at 18:08

Patapoom's user avatar

PatapoomPatapoom

7321 gold badge7 silver badges16 bronze badges

100% Solved.
While Installing make sure you are connected to Internet.
If already installed anaconda, open the anaconda command prompt and type following command:

conda install -c anaconda anaconda-navigator
(internet connection is required)

Note: In some cases restarting may solve the issue of navigator.

SeniorAdvisor's user avatar

answered Mar 12, 2019 at 5:38

user11189048's user avatar

This is what I did

  • Reinstall anacoda with ticked first check box
  • Remember to Restart

answered Sep 4, 2019 at 19:01

Isuru Nuwanthilaka's user avatar

Download and install Miniconda first from this link and later on download and install Anaconda. Then you will be able to see the navigator in your all programs list in the start menu. I hope this will help you. Let me know in case of any concerns.

majid bhatti's user avatar

answered Nov 6, 2017 at 9:21

whatsinthename's user avatar

1

In my case; it was available in the anaconda folder in «All App» from main menu

answered Jan 15, 2020 at 5:49

majid bhatti's user avatar

For people from Brazil

There is a security software called Warsaw (used for home banking) that must be uninstalled! After you can install it back again.

After thousand times trying, installing, uninstalling, cleanning-up the regedit that finally solved the problem.

answered Mar 3, 2020 at 2:11

imbr's user avatar

imbrimbr

5,4904 gold badges49 silver badges62 bronze badges

First Run This Command

conda config —set auto_activate_base True

Then Run This Command

anaconda-navigator.

answered Apr 1, 2021 at 15:51

BILAL ASLAM's user avatar

Turn off your internet connection, then open your terminal and type anaconda-navigator or type anaconda prompt in the search bar and double click on the anaconda prompt.

If anaconda is opened, then you can turn on your Wi-Fi.

Laurent's user avatar

Laurent

10.3k7 gold badges18 silver badges34 bronze badges

answered Apr 3, 2021 at 14:29

BILAL ASLAM's user avatar

1

I’m also faced with this issue. When I checked conda --version got a command not recognized error. Then I set the environmental variables as in https://stackoverflow.com/a/61372328/13370201. After that run anaconda navigator command. Then it started to initializing anaconda navigator.This tutorial also help for me.

answered Jul 15, 2021 at 9:03

Devindi Jayathilaka's user avatar

I faced the same problem in Solus Baidge but I solved by activating the conda environment.

First activate

conda activate

Then run the navigator

anaconda-navigator

answered Apr 7, 2022 at 5:17

Francis Odero's user avatar

Make sure to run the installer as admin

In my case (Windows 11) it was a permission problem. Make sure to run the installer as administrator. You can check this by modification of the path in the installer process.


Further steps to handle the problem:

  1. Uninstall your actual anaconda version.

  2. Delete old Data found in:

    C:UsersYourUsernameAppDataRoaming

    C:UsersYourUsername

    • (In my case it was called .anaconda and .conda folder)
  3. Restart PC

  4. Install Anaconda as admin

answered Apr 18, 2022 at 10:19

JAdel's user avatar

JAdelJAdel

1,1905 silver badges20 bronze badges

The followng command solved my issue.

pip install --upgrade pywin32==228

answered Sep 22, 2022 at 8:32

santobedi's user avatar

santobedisantobedi

8433 gold badges17 silver badges39 bronze badges

On windows 10, I faced the same error — only Anaconda Prompt was showing in the startup menu. What I did is i re-installed Anaconda and selected install for all users of the pc (in my initial installation I have installed only for current user).

answered Nov 10, 2018 at 19:54

Charidimos's user avatar

CharidimosCharidimos

5886 silver badges7 bronze badges

What finally worked for me was:

  1. Uninstalling Anaconda
  2. Deleting all files that has «conda» in them — most of them should be
    located in: C:UsersAdmin
  3. Delete especially the «condarc» file.
  4. Reboot
  5. Installed 32-bit installer (even though my system is 64-bit) and reboot

Finally worked. I have not yet re-tried with 64-bit installer, since I have a time critical project, but will do when again I have spare time.

P.S. what broke Anaconda for me was a blue screen I got while updating Anaconda. I guess it did not clear all old files and this broke the new installs.

answered Mar 15, 2020 at 10:34

4o4o_Adv's user avatar

1

I too faced a similar issue when I was not able to find the Anaconda Navigator Desktop app in the start menu. But do not worry , Go to start Menu and Type Anaconda Navigator. Now within the apps menu you will find anaconda navigator with its icon. Click on that. After clicking you will find a command prompt dialog opened and a .exe file runs on your machine. Wait till it completes.

The Anaconda Navigator app opens on your machine.

answered May 27, 2018 at 11:49

Vinayak G's user avatar

1

Anaconda (listed as «Python 3.6.0 (Anaconda 4.3.1 64 bit)» ) is in my programs and features list, but there is seeming no Anaconda Navigator desktop app, as their seems to be no icon on my desktop and I am unable to search for it through «Start». Could this be because I have the 32-bit version of Anaconda downloaded and I have a 64-bit OS (I thought I should do this because Python on my computer was 64-bit) or because I downloaded Anaconda under «users» instead of Desktop. I also downloaded Anaconda twice, if that could be causing some of the problem. I have a Windows 10 laptop, if that is any help.

asked Jun 30, 2017 at 7:56

Nathan S.'s user avatar

Nathan S.Nathan S.

4491 gold badge4 silver badges5 bronze badges

7

Open up a command terminal (CTRL+ALT+T)
and try running this command:

anaconda-navigator

When I installed Anaconda, and read the website docs, they said that they tend to not add a file or menu path to run the navigator because there are so many different versions of different systems, instead they give the above terminal command to start the navigator GUI and advise on setting up a shortcut to do this process manually — if that works for you it shouldn’t be too much trouble to do it this way — I do it like this personally

answered Dec 7, 2017 at 8:13

raser's user avatar

raserraser

4274 silver badges10 bronze badges

0

How I solved this issue:
1. Be connected to the internet.
2. Open the Anaconda Prompt (looks like a regular command window).
If you installed the .exe in your /name/user/ location you should be fine, if not navigate to it.
Then start an environment.

conda info —envs

Then run

conda install -c anaconda anaconda-navigator

Press y when prompted (if prompted). It will being downloading the packages needed.

Then run your newly installed Anaconda Navigator

anaconda-navigator

It should start, and also appear in your regular windows 10 apps list.

answered Apr 13, 2019 at 4:17

wxmeddler's user avatar

wxmeddlerwxmeddler

1711 silver badge4 bronze badges

0

activate the virtual env with command:

 conda activate base

run anacond anavigator

 anaconda-navigator 

answered Feb 16, 2020 at 12:19

Ioan Beilic's user avatar

Ioan BeilicIoan Beilic

4437 silver badges12 bronze badges

0

when you will type anaconda in windows 10 search bar it will give you the list as
enter image description here
then in terminal you have to type anaconda-navigator as
enter image description here
it will start anaconda on your machine.

answered Jun 30, 2017 at 13:45

jarry jafery's user avatar

jarry jaferyjarry jafery

9781 gold badge12 silver badges25 bronze badges

3

Yet another option which worked in my case on Windows 10: Try uninstalling your previous installation, restart the system and run the installation again.

Make sure you don’t start any programs before installing Anaconda. You will find the installation finishes without prompting any kind of errors.

Type in Anaconda in your Windows 10 Search bar. You will find Anaconda Prompt appear.

answered Jan 20, 2018 at 22:52

Biswajit Roy's user avatar

Biswajit RoyBiswajit Roy

5082 gold badges9 silver badges18 bronze badges

I figured out the reason as to why:

1-There seems to be no navigator icon

2-When conducting the above steps of running the «anaconda-navigator» command in prompt (whether cmd or Anaconda) it yields «anaconda navigator is not recognized as an internal or external command»

This was very frustrating to me as I’d installed the proper version multiple times with no avail.

To solve this problem :

  • in the installation process, there will be an advanced options step with 2 selections one of which is unchecked (the top one). Make sure you check it which will add the navigator to the path of your machine variables.

Cheers,
Hossam

answered Feb 3, 2019 at 17:03

Hossam Antar Korin's user avatar

1

it works :

export PATH=/home/yourUserName/anaconda3/bin:$PATH

after that run anaconda-navigator command. remember anaconda can’t in Sudo mode, so don’t use sudo at all.

Conda Running Screenshot

answered Sep 26, 2018 at 14:26

Mohammad Heydari's user avatar

Mohammad HeydariMohammad Heydari

3,6932 gold badges24 silver badges33 bronze badges

1

I faced the same problem on Windows 10. As soon as I cleared my Path variable from edit environment variables option, the icon started to appear. It was occurring because I had previously installed python 3.6.1 on my computer and added it to my path variable as C:Python36;C:Python36DLL; and so on. There isn’t any need to uninstall Anaconda Navigator and start from scratch if you have correctly followed the steps mentioned at the documentation for it.

answered Jan 12, 2019 at 13:29

Anubhav Pandey's user avatar

Anubhav PandeyAnubhav Pandey

1,2651 gold badge13 silver badges18 bronze badges

Try restarting the system! You will be able to find the navigator once you restart the system after installation.

answered Feb 23, 2019 at 17:25

Saurav K Shastri's user avatar

Tried all solutions here but these 2 steps solved the issue:

1) manual update of open-ssl from here:
https://slproweb.com/products/Win32OpenSSL.html
2) update OpenSSL using conda update openssl command in the Anaconda Prompt

solved the issue!

answered Oct 13, 2019 at 23:10

Denis Evseev's user avatar

Denis EvseevDenis Evseev

1,6301 gold badge18 silver badges33 bronze badges

I had a similar issue today where only the prompt was available after installation.
Finally solved this by un-installing my regular python installation and then install anaconda(anaconda 3 v5.2.0, with python 3.6).

answered Sep 10, 2018 at 13:44

Patrick Cree's user avatar

I also have the issue on windows when i am unable to find the anaconda-navigator in start menu.
First you have to check anaconda-navigator.exe file in your anaconda folder if this file is present it means you have installed it properly otherwise there is some problem and you have to reinstall it.

Before reinstalling this points to be noticed
1) You have to uninstall all previous python folder
2) Check you environment variable and clear all previous python path

After this install anaconda
your problem will be resolved if not tell me the full error i will try to solve it

answered Jan 18, 2019 at 19:15

Vaibhav Chawla's user avatar

Uninstall your Anaconda, delete the folder where it was. Then reinstall it.

answered Feb 5, 2019 at 18:08

Patapoom's user avatar

PatapoomPatapoom

7321 gold badge7 silver badges16 bronze badges

100% Solved.
While Installing make sure you are connected to Internet.
If already installed anaconda, open the anaconda command prompt and type following command:

conda install -c anaconda anaconda-navigator
(internet connection is required)

Note: In some cases restarting may solve the issue of navigator.

SeniorAdvisor's user avatar

answered Mar 12, 2019 at 5:38

user11189048's user avatar

This is what I did

  • Reinstall anacoda with ticked first check box
  • Remember to Restart

answered Sep 4, 2019 at 19:01

Isuru Nuwanthilaka's user avatar

Download and install Miniconda first from this link and later on download and install Anaconda. Then you will be able to see the navigator in your all programs list in the start menu. I hope this will help you. Let me know in case of any concerns.

majid bhatti's user avatar

answered Nov 6, 2017 at 9:21

whatsinthename's user avatar

1

In my case; it was available in the anaconda folder in «All App» from main menu

answered Jan 15, 2020 at 5:49

majid bhatti's user avatar

For people from Brazil

There is a security software called Warsaw (used for home banking) that must be uninstalled! After you can install it back again.

After thousand times trying, installing, uninstalling, cleanning-up the regedit that finally solved the problem.

answered Mar 3, 2020 at 2:11

imbr's user avatar

imbrimbr

5,4904 gold badges49 silver badges62 bronze badges

First Run This Command

conda config —set auto_activate_base True

Then Run This Command

anaconda-navigator.

answered Apr 1, 2021 at 15:51

BILAL ASLAM's user avatar

Turn off your internet connection, then open your terminal and type anaconda-navigator or type anaconda prompt in the search bar and double click on the anaconda prompt.

If anaconda is opened, then you can turn on your Wi-Fi.

Laurent's user avatar

Laurent

10.3k7 gold badges18 silver badges34 bronze badges

answered Apr 3, 2021 at 14:29

BILAL ASLAM's user avatar

1

I’m also faced with this issue. When I checked conda --version got a command not recognized error. Then I set the environmental variables as in https://stackoverflow.com/a/61372328/13370201. After that run anaconda navigator command. Then it started to initializing anaconda navigator.This tutorial also help for me.

answered Jul 15, 2021 at 9:03

Devindi Jayathilaka's user avatar

I faced the same problem in Solus Baidge but I solved by activating the conda environment.

First activate

conda activate

Then run the navigator

anaconda-navigator

answered Apr 7, 2022 at 5:17

Francis Odero's user avatar

Make sure to run the installer as admin

In my case (Windows 11) it was a permission problem. Make sure to run the installer as administrator. You can check this by modification of the path in the installer process.


Further steps to handle the problem:

  1. Uninstall your actual anaconda version.

  2. Delete old Data found in:

    C:UsersYourUsernameAppDataRoaming

    C:UsersYourUsername

    • (In my case it was called .anaconda and .conda folder)
  3. Restart PC

  4. Install Anaconda as admin

answered Apr 18, 2022 at 10:19

JAdel's user avatar

JAdelJAdel

1,1905 silver badges20 bronze badges

The followng command solved my issue.

pip install --upgrade pywin32==228

answered Sep 22, 2022 at 8:32

santobedi's user avatar

santobedisantobedi

8433 gold badges17 silver badges39 bronze badges

On windows 10, I faced the same error — only Anaconda Prompt was showing in the startup menu. What I did is i re-installed Anaconda and selected install for all users of the pc (in my initial installation I have installed only for current user).

answered Nov 10, 2018 at 19:54

Charidimos's user avatar

CharidimosCharidimos

5886 silver badges7 bronze badges

What finally worked for me was:

  1. Uninstalling Anaconda
  2. Deleting all files that has «conda» in them — most of them should be
    located in: C:UsersAdmin
  3. Delete especially the «condarc» file.
  4. Reboot
  5. Installed 32-bit installer (even though my system is 64-bit) and reboot

Finally worked. I have not yet re-tried with 64-bit installer, since I have a time critical project, but will do when again I have spare time.

P.S. what broke Anaconda for me was a blue screen I got while updating Anaconda. I guess it did not clear all old files and this broke the new installs.

answered Mar 15, 2020 at 10:34

4o4o_Adv's user avatar

1

I too faced a similar issue when I was not able to find the Anaconda Navigator Desktop app in the start menu. But do not worry , Go to start Menu and Type Anaconda Navigator. Now within the apps menu you will find anaconda navigator with its icon. Click on that. After clicking you will find a command prompt dialog opened and a .exe file runs on your machine. Wait till it completes.

The Anaconda Navigator app opens on your machine.

answered May 27, 2018 at 11:49

Vinayak G's user avatar

1

my anaconda stucks at loading applications…
I tried pip install pyqt5 but still it doesn’t work
here is what I got when I put anaconda-navigator in anaconda prompt, seems like some app missing but not pyqt.
anybody still around to help? thanks!

(base) C:UsersPimwipa>anaconda-navigator
2018-07-26 13:40:37,611 — ERROR client_api._load_repodata:151
Expecting value: line 1 column 1 (char 0)

2018-07-26 13:40:37,611 — ERROR client_api._load_repodata:151
Expecting value: line 1 column 1 (char 0)

2018-07-26 13:40:37,611 — ERROR client_api._load_repodata:151
Expecting value: line 1 column 1 (char 0)

2018-07-26 13:40:37,611 — ERROR client_api._load_repodata:151
Expecting value: line 1 column 1 (char 0)

2018-07-26 13:40:37,611 — ERROR client_api._load_repodata:151
Expecting value: line 1 column 1 (char 0)

2018-07-26 13:40:37,611 — ERROR client_api._load_repodata:151
Expecting value: line 1 column 1 (char 0)

2018-07-26 13:40:37,611 — ERROR client_api._load_repodata:151
Expecting value: line 1 column 1 (char 0)

2018-07-26 13:40:37,611 — ERROR client_api._load_repodata:151
Expecting value: line 1 column 1 (char 0)

2018-07-26 13:40:37,626 — ERROR client_api._load_repodata:151
Expecting value: line 1 column 1 (char 0)

2018-07-26 13:40:37,626 — ERROR client_api._load_repodata:151
Expecting value: line 1 column 1 (char 0)

2018-07-26 13:40:37,626 — ERROR client_api._load_repodata:151
Expecting value: line 1 column 1 (char 0)

2018-07-26 13:40:37,626 — ERROR client_api._load_repodata:151
Expecting value: line 1 column 1 (char 0)

2018-07-26 13:40:37,642 — ERROR client_api._load_repodata:151
Expecting value: line 1 column 1 (char 0)

2018-07-26 13:40:37,642 — ERROR client_api._load_repodata:151
Expecting value: line 1 column 1 (char 0)

2018-07-26 13:40:37,642 — ERROR client_api._load_repodata:151
Expecting value: line 1 column 1 (char 0)

2018-07-26 13:40:37,642 — ERROR client_api._load_repodata:151
Expecting value: line 1 column 1 (char 0)

Traceback (most recent call last):
File «C:UsersPimwipaAnaconda3libsite-packagesanaconda_navigatorwidgetsmain_window.py», line 442, in process_application_info
self.post_setup(processed_apps)
File «C:UsersPimwipaAnaconda3libsite-packagesanaconda_navigatorwidgetsmain_window.py», line 457, in post_setup
self.home_tab.setup_tab(apps, prefix=self.current_prefix)
File «C:UsersPimwipaAnaconda3libsite-packagesanaconda_navigatorwidgetstabshome.py», line 253, in setup_tab
self.set_applications(prefix=prefix)
File «C:UsersPimwipaAnaconda3libsite-packagesanaconda_navigatorwidgetstabshome.py», line 267, in set_applications
missing_apps = [app for app in linked_apps if app not in self.apps]
File «C:UsersPimwipaAnaconda3libsite-packagesanaconda_navigatorwidgetstabshome.py», line 267, in
missing_apps = [app for app in linked_apps if app not in self.apps]
TypeError: argument of type ‘NoneType’ is not iterable

Содержание

  1. Анаконда установлена, но не запускает навигатор
  2. 18 ответов
  3. Anaconda установлен, но не может запустить навигатор
  4. ОТВЕТЫ
  5. Ответ 1
  6. Ответ 2
  7. Ответ 3
  8. Ответ 4
  9. Ответ 5
  10. Ответ 6
  11. Ответ 7
  12. Ответ 8
  13. Ответ 9
  14. Ответ 10
  15. Ответ 11
  16. Ответ 12
  17. Ответ 13
  18. Ответ 14
  19. Ответ 15
  20. Ответ 16
  21. Ответ 17
  22. Ответ 18
  23. Ответ 19
  24. Ответ 20
  25. Ответ 21
  26. Troubleshooting¶
  27. Navigator error on start up¶
  28. Issues launching or initializing¶
  29. PermissionError on macOS Catalina¶
  30. Access denied error¶
  31. Navigator buttons are missing¶
  32. Navigator ignores the “Ok, and don’t show again” option on the help Anaconda improve pop up¶
  33. RStudio fails to install in Navigator 1.6.2 if special characters are in install path¶
  34. Trouble logging in to Team Edition from Navigator¶
  35. NeilAlishev / Instruction.md
  36. Анаконда Навигатор не запускается (Windows 10)
  37. 9 ответов

Анаконда установлена, но не запускает навигатор

18 ответов

Откройте командный терминал (CTRL + ALT + T) и попробуйте запустить эту команду:

Когда вы наберете anaconda в строке поиска Windows 10, она выдаст список как 135190, затем в терминале вы должны ввести anaconda-navigator, так как 135191запустит anaconda на вашем компьютере.

Еще один вариант, который работал в моем случае на Windows 10: попробуйте удалить предыдущую установку, перезагрузить систему и снова запустить установку.

Убедитесь, что вы не запускаете любые программы перед установкой Anaconda. Вы обнаружите, что установка завершена без каких-либо ошибок.

Введите Anaconda в панель поиска Windows 10. Вы увидите Anaconda Prompt.

Нажмите y, когда будет предложено (если будет предложено). Это будет загрузка необходимых пакетов.

Затем запустите только что установленный Anaconda Navigator

Он должен запуститься, а также появиться в вашем обычном списке приложений для Windows 10.

Я выяснил причину, почему:

1-Кажется, нет значка навигатора

2-При выполнении описанных выше шагов при запуске команды «anaconda-navigator» в командной строке (cmd или Anaconda) выдается «anaconda navigator не распознается как внутренняя или внешняя команда»

Это очень расстраивало меня, так как я несколько раз безуспешно устанавливал нужную версию.

Для решения этой проблемы :

У меня также возникает проблема с окнами, когда я не могу найти анаконда-навигатор в меню «Пуск». Сначала вы должны проверить файл anaconda-navigator.exe в папке anaconda, если этот файл присутствует, это означает, что вы правильно установили его, в противном случае возникнет какая-то проблема, и вам придется переустановить его.

Прежде чем переустанавливать эти пункты, обратите внимание: 1) Вы должны удалить всю предыдущую папку Python. 2) Проверить переменную среды и очистить все предыдущие пути Python.

После этой установки Anaconda ваша проблема будет решена, если не сказать мне полную ошибку, я постараюсь ее решить

Я столкнулся с той же проблемой на Windows 10. Как только я очистил свою переменную Path от опции редактирования переменных среды, значок начал появляться. Это происходило потому, что я ранее установил python 3.6.1 на свой компьютер и добавил его в переменную пути как C:Python36; C:Python36DLL; и так далее. Нет необходимости удалять Anaconda Navigator и начинать с нуля, если вы правильно выполнили шаги, упомянутые в документации к нему.

Я сделал все решения выше. До сих пор не работает. Я удалил и установил его 3 раза! Самое смешное, что раньше это работало. Я попытался обновить анаконду, а затем вдруг все испортилось.

Трассировка (последний вызов был последним): файл «C:UsersAU529763AppDataLocalContinuumanaconda3libsite-packagesqtpy__init __. Py», строка 202, из версии импорта PySide как PYSIDE_VERSION # анализ: игнорировать ModuleNotFoundError: нет модуля с именем PySide

Во время обработки вышеупомянутого исключения произошло другое исключение:

Источник

Anaconda установлен, но не может запустить навигатор

ОТВЕТЫ

Ответ 1

Откройте командный терминал (CTRL + ALT + T) и попробуйте запустить эту команду:

Ответ 2

Ответ 3

Нажмите y, когда будет предложено (если будет предложено). Это будет загрузка необходимых пакетов.

Затем запустите только что установленный Anaconda Navigator

Он должен запуститься, а также появиться в вашем обычном списке приложений для Windows 10.

Ответ 4

Когда вы наберете anaconda в строке поиска Windows 10, она выдаст список как ec39c1f625649a83878d09a0b33bb4d8, затем в терминале вы должны ввести anaconda-navigator, так как e62d31a38e9b1e2a7a582db274c00935 запустит anaconda на вашем компьютере.

Ответ 5

Еще один вариант, который работал в моем случае на Windows 10: попробуйте удалить предыдущую установку, перезагрузить систему и снова запустить установку.

Убедитесь, что вы не запускаете любые программы перед установкой Anaconda. Вы обнаружите, что установка завершена без каких-либо ошибок.

Введите Anaconda в панель поиска Windows 10. Вы увидите Anaconda Prompt.

Ответ 6

Я выяснил причину, почему:

1-Кажется, нет значка навигатора

2-При выполнении описанных выше шагов при запуске команды «anaconda-navigator» в командной строке (cmd или Anaconda) выдается «anaconda navigator не распознается как внутренняя или внешняя команда»

Это очень расстраивало меня, так как я несколько раз безуспешно устанавливал нужную версию.

Для решения этой проблемы :

Ответ 7

Я столкнулся с той же проблемой на Windows 10. Как только я очистил свою переменную Path от опции редактирования переменных среды, значок начал появляться. Это происходило потому, что я ранее установил python 3.6.1 на свой компьютер и добавил его в переменную пути как C:Python36; C:Python36DLL; и так далее. Нет необходимости удалять Anaconda Navigator и начинать с нуля, если вы правильно выполнили шаги, упомянутые в документации к нему.

Ответ 8

У меня также возникает проблема с окнами, когда я не могу найти анаконда-навигатор в меню «Пуск». Сначала вы должны проверить файл anaconda-navigator.exe в папке anaconda, если этот файл присутствует, это означает, что вы правильно установили его, в противном случае возникнет какая-то проблема, и вам придется переустановить его.

Прежде чем переустанавливать эти пункты, обратите внимание: 1) Вы должны удалить всю предыдущую папку Python. 2) Проверить переменную среды и очистить все предыдущие пути Python.

После этой установки Anaconda ваша проблема будет решена, если не сказать мне полную ошибку, я постараюсь ее решить

Ответ 9

Попробуйте перезагрузить систему! Вы сможете найти навигатор после перезагрузки системы после установки.

Ответ 10

Загрузите и установите Miniconda сначала из эту ссылку, а затем загрузите и установите Anaconda, тогда вы сможете увидеть навигатор в своих программах в вашем стартовом меню. Надеюсь, это вам поможет. Сообщите мне в случае каких-либо проблем.

Ответ 11

Возможно, вы не находитесь в среде анаконды

Ниже приведена ссылка на активацию среды из официальной документации

В Windows в приглашении Anaconda запустите activate myenv

А затем запустите навигатор anaconda из командной строки anaconda, введя команду anaconda-navigator

Ответ 12

У меня была похожая проблема сегодня, когда после установки была доступна только подсказка. Наконец, решил эту проблему, удалив мою обычную установку Python, а затем установив anaconda (anaconda 3 v5.2.0, с python 3.6).

Ответ 13

Ответ 14

Удалите Anaconda, удалите папку, где она была. Затем переустановите его.

Ответ 15

100% решено. Во время установки убедитесь, что вы подключены к Интернету. Если anaconda уже установлена, откройте командную строку anaconda и введите следующую команду:

Примечание. В некоторых случаях перезапуск может решить проблему с навигатором.

Ответ 16

Я сделал все решения выше. До сих пор не работает. Я удалил и установил его 3 раза! Самое смешное, что раньше это работало. Я попытался обновить анаконду, а затем вдруг все испортилось.

Трассировка (последний вызов был последним): файл «C:UsersAU529763AppDataLocalContinuumanaconda3libsite-packagesqtpy__init __. Py», строка 202, из версии импорта PySide как PYSIDE_VERSION # анализ: игнорировать ModuleNotFoundError: нет модуля с именем PySide

Во время обработки вышеупомянутого исключения произошло другое исключение:

Трассировка (последний вызов был последним): Файл «C:UsersAU529763AppDataLocalContinuumanaconda3Scriptsanaconda-navigator-script.py», строка 6, из главного файла импорта anaconda_navigator.app.main. C:UsersAU529763AppDataLocalContinuumanaconda3libsite-packagesanaconda_navigatorappmain.py «, строка 22, из файла anaconda_navigator.utils.conda, импорт is_conda_available Файл» C:UsersAU529763AppDataLocalContinuumanaconda3libsite-packagesanaconda_navigatorutils__init __. Py «, строка 15, из qtpy.QtGui, импортирует файл QIcon импорта» C:UsersAU529763AppDataLocalContinuumanaconda3libsite-packagesqtpy__init __. py «, строка 208, в Raise PythonQtError (‘Не удалось найти привязки Qt’) qtpy.PythonQtError: Невозможно найти привязки Qt

Ответ 17

Пауза антивирусных программ и брандмауэр

Ответ 18

Это то, что я сделал

Ответ 19

Перепробовал все решения здесь, но эти 2 шага решили проблему:

1) ручное обновление open-ssl отсюда: https://slproweb.com/products/Win32OpenSSL.html
2) обновить OpenSSL с помощью команды conda update openssl в подсказке Anaconda

Ответ 20

cec4b1ac833341921aac1c7019b92b61

Ответ 21

Приложение Anaconda Navigator откроется на вашем компьютере.

Источник

Troubleshooting¶

Navigator error on start up¶

Optional: Save custom configurations.

Issues launching or initializing¶

If you are having problems launching Anaconda Navigator, follow these steps.

Then relaunch Navigator from the desktop app, terminal, or Anaconda Prompt.

If removing the licenses directory does not resolve the issue, manually update Navigator from a terminal or an Anaconda Prompt:

conda update anaconda-navigator

If you have updated Navigator and still have problems, remove Anaconda Navigator, then reinstall from terminal or Anaconda Prompt:

If none of the above work, please reset Anaconda Navigator configuration back to default values:

PermissionError on macOS Catalina¶

MacOS Catalina users may experience permission errors where the system does not prompt you for permission to folders requiring access.

First, update Navigator.

conda update anaconda-navigator

Once updated, you can have Navigator generate the permissions prompt for the first time by launching Spyder and running something like this in the console (you can replace Desktop with Downloads/Documents folder depending on which you need access to):

Access denied error¶

This is caused by a lock file that sometimes gets stuck and isn’t removed when it should be.

In Anaconda Prompt or a terminal, run:

The last command is the key to fixing the issue as it removes the lock file causing the problem.

Navigator buttons are missing¶

If your Navigator buttons are missing, try the following:

Navigator ignores the “Ok, and don’t show again” option on the help Anaconda improve pop up¶

After starting Navigator, a pop up appears asking if you’d like to provide anonymized usage information to Anaconda. If you select “Okay, and don’t show again” and the pop up appears again the next time you start Navigator, it may be due to a privilege conflict.

Specifically, this can occur when Navigator was installed by a user with Administrator privileges, but you are using it as a regular user without the Administrator privileges. The pop up continues to appear because you do not have permission to change the pop up box setting.

To resolve this, switch to using an account with Administrator privileges and select the “Ok, and don’t show again” option in the pop up box. This will apply to all user accounts.

RStudio fails to install in Navigator 1.6.2 if special characters are in install path¶

This is a known issue in Navigator 1.6.2 on Windows 7 64-bit.

Trouble logging in to Team Edition from Navigator¶

If you are having issues logging in or know you’re logged in but cannot interact with Team Edition, try the following steps:

Источник

NeilAlishev / Instruction.md

Это очень частая проблема, которая появляется на некоторых ОС. Дело в том, что среда разработки запустилась, но браузер не открылся автоматически.

Как решить эту проблему?

В первую очередь, попробуйте запустить Anaconda Navigator с правами администратора (правой кнопкой мыши нажать на иконку Anaconda Navigator, во всплывающем меню выбрать «Запуск от имени администратора»). Теперь, запустите Jupyter Notebook.

Если все равно не открывается окно браузера, выполните инструкции описанные далее.

Запустите программу, которая называется CMD.exe Prompt (может также называться Anaconda Prompt), нажав на Launch. Эта программа находится тут же, в Anaconda Navigator, рядом с программой Jupyter Notebook. После нажатия на Launch, должна открыться командная строка. Если этой программы нет в Anaconda Navigator, можно найти программу «Anaconda Prompt» на компьютере с помощью обычного поиска по программам.

Вышеупомянутая команда показывает тот адрес, по которому мы сможем получить доступ к нашей среде разработки. Адрес имеет вид: http://localhost:8888/?token=СЛУЧАЙНАЯ_ПОСЛЕДОВАТЕЛЬНОСТЬ_БУКВ_И_ЦИФР

Вам необходимо скопировать этот адрес, вставить его в адресную строку вашего браузера и перейти на эту страницу. После этого откроется среда разработки Jupyter Notebook. Можно работать.

ОС Linux или Mac OS: Надо просто открыть терминал и там написать jupyter notebook Полученный адрес надо скопировать в адресную строку браузера.

Источник

Анаконда Навигатор не запускается (Windows 10)

Anaconda Navigator не запускается, я попытался переустановить его, что тоже не сработало. В командной строке anancondas отображается сообщение об ошибке. Я пытался найти ответ в гугле, наверное, я в этом плох. это то, что я вижу после открытия подсказки анаконды

PS Я использую Spyder на нем

9 ответов

Я не знаю, почему, но команда ниже работала для меня.

Конечно, я обновил Anaconda и Navigator перед выполнением этой команды.

Вам необходимо обновить Anaconda, используя:

Попробуйте эти команды в командной строке anaconda, а затем попробуйте запустить навигатор из самой подсказки, используя следующую команду:

Если все же проблема не решена, поделитесь журналами подсказок anaconda здесь, если они имеют какие-либо ошибки.

Вам нужно запустить приглашение cmd из каталога Scripts в Anaconda, где бы вы не установили родительскую папку Anaconda. У меня в корневом каталоге диска C на моей машине Windows. Если вы не знакомы, есть два способа сделать это:

A) Используйте комбинацию клавиш Win-key + R затем введите cmd и нажмите return, чтобы запустить окно терминала, а затем введите: cd C:AnacondaScripts (или любой другой путь к вашему каталогу).

B) Перейдите с помощью проводника Windows в этот каталог Scripts, затем введите cmd в адресной строке этого окна и нажмите return (который запустит терминал, уже установленный в этот каталог).

Затем введите следующие команды, которые ждут между ними для завершения:

Когда полный тип будет выглядеть следующим образом и Navigator:

Источник

Dry version to satisfy the stackoverflow bot here.
For a detailed commentary on how I resolved this issue following Rohit’s posting, check out:
Anaconda Navigator – Windows – Installation Issues & Possible Resolution For Ya
This is the BEST answer — props to Rohit.

Anaconda Navigator

Had it on my older Alienware but it is NOT installing properly on my newer HP zBook to give me the Navigator gui.
Most common resolution noted — uninstall Anaconda and re-install it.
Many have tried that (without success) — multiple times and attempting to cleanse the Registry (Windows 10) of all Anaconda references.
Restart and/or reboot after doing so.
Result — no success.

The comment noted by @Rohit to go here and pull down the latest file:

 === Anaconda3-5.3.1-Windows-x86_64.exe     632.5M  2018-11-19 13:38:59 ---

After installing, it asks for VS Code installation (if you’re like me, you already have it — skip this).

Installed it. SUCCESS….!!! Anaconda Prompt // Anaconda Navigator // Spyder // Jupyter Notebook — they ALL appear in the Start area now.

If no success for you, just go with Python3.9 (or 3.10), pip3 and Jupyter Notebook and say scrap Anaconda….

I did the following after researching (and tearing my hair out) for a day. From Command Prompt, I entered the following after navigating to the C:Users<user>Anaconda3Scripts directory:

activate root

That turns it into an Anaconda prompt.

Then, like others here, I updated Anaconda all the way around:

conda update -n root conda
conda update --all
conda update conda
conda update anaconda-navigator

I also did a reset:

anaconda-navigator --reset

I guess, after a while, one gets desperate (this followed three uninstalls/reinstalls etc.) Still, I got this error, which had started the entire «journey»:

qt.qpa.plugin: Could not find the Qt platform plugin "windows" in ""
This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.

Otherwise, Anaconda did not show up on the Start menu, and could not be launched. PyQt5 was installed.

What also did not do anything was adding Anaconda’s path to PATH in system variables.

The last thing I did fixed everything: I copied the entire PyQt5 folder from

C:Users<user>Anaconda3Libsite-packages

where it seemed more complete/contain more to

C:Users<user>AppDataRoamingPythonPython39site-packages
C:Users<user>AppDataRoamingPythonPython39site-packages

and then tried it again. And it finally came up.

Hope this helps somebody.

Понравилась статья? Поделить с друзьями:
  • Не запускается wifi windows 10 на ноутбуке
  • Не запускается amd radeon settings windows 10
  • Не запускается skype на windows 10 не реагирует
  • Не запускается shaun white skateboarding на windows 10
  • Не запускается amd catalyst control center на windows 10