Skip to content

Commit

Permalink
add --force to pandas build error message
Browse files Browse the repository at this point in the history
closes #13095

Author: Maximilian Roos <[email protected]>

Closes #13096 from MaximilianR/force-message and squashes the following commits:

6f2d9e2 [Maximilian Roos] add --force to pandas build error message
  • Loading branch information
max-sixty authored and jreback committed May 5, 2016
1 parent 7e36fb5 commit 2e975b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
module = str(e).lstrip('cannot import name ') # hack but overkill to use re
raise ImportError("C extension: {0} not built. If you want to import "
"pandas from the source directory, you may need to run "
"'python setup.py build_ext --inplace' to build the C "
"extensions first.".format(module))
"'python setup.py build_ext --inplace --force' to build "
"the C extensions first.".format(module))

from datetime import datetime
from pandas.info import __doc__
Expand Down

0 comments on commit 2e975b6

Please sign in to comment.