Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[doc] Add the bug fix information for ipython user #254

Merged

Conversation

nabenabe0928
Copy link
Contributor

@nabenabe0928 nabenabe0928 commented Jun 14, 2021

After the installation by following README, we will get an unwanted error regarding ipython.
Basically, we will not be able to use ipython by NoModuleFoundError at all, because we change the base conda setting.

The command that yields the error is conda install gxx_linux-64 gcc_linux-64 swig and this can be fixed by unset _CONDA_PYTHON_SYSCONFIGDATA_NAME.
The unset command unsets the environment variable.

You can reproduce this issue by the followings:

$ conda install gxx_linux-64 gcc_linux-64 swig
$ conda activate <Any environments>
$ which ipython
# Check the ipython refers to one of the conda environments
$ ipython
# This yields an error
 
$ unset _CONDA_PYTHON_SYSCONFIGDATA_NAME
# This environment variable is originally None, so we need to reset it
# ==> it fixes the issue.

@codecov
Copy link

codecov bot commented Jun 14, 2021

Codecov Report

Merging #254 (0ce2970) into development (1818445) will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@             Coverage Diff              @@
##           development     #254   +/-   ##
============================================
  Coverage        80.82%   80.82%           
============================================
  Files              148      148           
  Lines             8563     8563           
  Branches          1323     1323           
============================================
  Hits              6921     6921           
  Misses            1163     1163           
  Partials           479      479           
Impacted Files Coverage Δ
...components/setup/network_initializer/XavierInit.py 81.81% <0.00%> (-18.19%) ⬇️
...nts/setup/network_backbone/ConvNetImageBackbone.py 96.07% <0.00%> (-3.93%) ⬇️
autoPyTorch/ensemble/ensemble_builder.py 72.70% <0.00%> (+0.83%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 1818445...0ce2970. Read the comment docs.

@franchuterivera franchuterivera merged commit 6a8155f into automl:development Jun 16, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants