1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ipython 自作モジュールのパスを通して起動するTips

Last updated at Posted at 2021-07-26

作成中のモジュールをちょっとテストしたい

ということが多々あります。
ある程度開発が進んできたらちゃんとテストツールを使って試験データを作って、、、とすればいいのですけれど、まだそこまで仕様が固まってないとか、そもそもテストデータ作るほどの規模でもないしなーと言うくらいのときのTIPS。

どうするか?

こうすればいいだけ。

> env PYTHONPATH="./" ipython

./ならパス通す必要ないのでは?
まぁ無いんですけど、ipythonの中に入ってからcdして目当てのスクリプトの入っているディレクトリに引っ越したり、あるいは同一ディレクトリ以外に配置したモジュール使ったりというのは往々にしてあるわけで、そういうときに起動前にワンライナーでPYTHONPATH与えておけばOKです。

そんだけ。

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?