テスト目的で偽のデータベースを作成できる「Fake2db」のインストール

スポンサーリンク

テスト目的で偽のデータベースを作成できる「Fake2db」のインストールについて解説しています。

「Fake2db(https://github.com/emirozer/fake2db)」は、最も一般的なパターン(AFAIK)を使用し、偽ではあるが有効なデータで満たされたデータベースを生成することが可能なPythonライブラリです。

■Python

今回のPythonのバージョンは、「3.8.5」を使用しています。(Windows10)(pythonランチャーでの確認)

■fake2dbをインストールする

fake2dbをインストールを行いますが、今回はpipを経由してインストールを行うので、まずWindowsのコマンドプロンプトを起動します。

pip install fake2db

起動後、上記のコマンドを入力し、Enterキーを押します。

なお、今回は、pythonランチャーを使用しており、Python Version 3.8.5にインストールを行うために、バージョンの切り替えを行います。

py -3.8 -m pip install fake2db

切り替えるために、上記のコマンドを入力し、Enterキーを押します。

Defaulting to user installation because normal site-packages is not writeable
Collecting fake2db
Downloading fake2db-0.5.4.tar.gz (10 kB)
Preparing metadata (setup.py) ... done
Collecting Faker==0.7.11
Downloading Faker-0.7.11-py2.py3-none-any.whl (579 kB)
---------------------------------------- 579.5/579.5 kB 1.3 MB/s eta 0:00:00
Requirement already satisfied: six in c:\users\user_\appdata\roaming\python\python38\site-packages (from Faker==0.7.11->fake2db) (1.16.0)
Requirement already satisfied: python-dateutil>=2.4 in c:\users\user_\appdata\roaming\python\python38\site-packages (from Faker==0.7.11->fake2db) (2.8.2)
Building wheels for collected packages: fake2db
Building wheel for fake2db (setup.py) ... done
Created wheel for fake2db: filename=fake2db-0.5.4-py3-none-any.whl size=17192 sha256=6d595598b914d583a3431519e84aff034ec20889cae8917839fa0d95e99dbe42
Stored in directory: c:\users\user_\appdata\local\pip\cache\wheels
Defaulting to user installation because normal site-packages is not writeable
Collecting fake2db
Downloading fake2db-0.5.4.tar.gz (10 kB)
Preparing metadata (setup.py) ... done
Collecting Faker==0.7.11
Downloading Faker-0.7.11-py2.py3-none-any.whl (579 kB)
---------------------------------------- 579.5/579.5 kB 1.3 MB/s eta 0:00:00
Requirement already satisfied: six in c:\users\user_\appdata\roaming\python\python38\site-packages (from Faker==0.7.11->fake2db) (1.16.0)
Requirement already satisfied: python-dateutil>=2.4 in c:\users\user_\appdata\roaming\python\python38\site-packages (from Faker==0.7.11->fake2db) (2.8.2)
Building wheels for collected packages: fake2db
Building wheel for fake2db (setup.py) ... done
Created wheel for fake2db: filename=fake2db-0.5.4-py3-none-any.whl size=17192 sha256=6d595598b914d583a3431519e84aff034ec20889cae8917839fa0d95e99dbe42
Stored in directory: c:\users\user_\appdata\local\pip\cache\wheels\0b\ca\cc\b016e22cc271ee0f5ce223522a1ee033191ab00d57fe1383b7
Successfully built fake2db
Installing collected packages: Faker, fake2db
Successfully installed Faker-0.7.11 fake2db-0.5.4
b\ca\cc\b016e22cc271ee0f5ce223522a1ee033191ab00d57fe1383b7 Successfully built fake2db Installing collected packages: Faker, fake2db Successfully installed Faker-0.7.11 fake2db-0.5.4

Enterキーを押すと、インストールが開始され、上記のように「Successfully installed」と表示されます。これが表示されれば、fake2dbが正常にインストールされたことになります。

なお、今回はfake2dbのバージョン0.5.4をインストールしました。

コメント

タイトルとURLをコピーしました