Skip to content

Commit

Permalink
add_python_folder_to_path() : added $PYTHON/Library/bin to $PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
kangwonlee committed Mar 15, 2019
1 parent aea104d commit c29b24c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def add_python_folder_to_path(bashrc_txt, bash_can_find_python=can_bash_find_pyt

b_path = True

bashrc_txt += f'\nexport PATH={python_folder}:$PATH\n'
bashrc_txt += f'\nexport PATH={python_folder}:{python_folder}/Library/bin:$PATH\n'

return b_path, bashrc_txt

Expand Down

0 comments on commit c29b24c

Please sign in to comment.