Skip to content

Commit

Permalink
Merge pull request #8264 from kmaehashi/fix-env-check
Browse files Browse the repository at this point in the history
Fix CuPy installation detection error message
  • Loading branch information
mergify[bot] committed Oct 10, 2019
2 parents 4fd2210 + 15ecbaf commit 05c9556
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions chainer/_environment_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,10 @@ def _check_optional_dependencies():
--------------------------------------------------------------------------------
Multiple installations of {name} package has been detected.
You should select only one package from from {pkgs}.
Run `pip list` to see the list of packages currently installed, then
`pip uninstall <package name>` to uninstall unnecessary package(s).
Follow these steps to resolve this issue:
1. `pip list` to list {name} packages installed
2. `pip uninstall <package name>` to uninstall all {name} packages
3. `pip install <package name>` to install the proper one
--------------------------------------------------------------------------------
'''.format(name=name, pkgs=pkgs))
installed = True
Expand Down

0 comments on commit 05c9556

Please sign in to comment.