Skip to content

Installation

John Erinjery edited this page Apr 14, 2023 · 1 revision

To install neosekai-api, follow the following steps:

  1. Make sure you have Python installed correctly on your device.

    • open the command prompt using Windows + R and typing in cmd
    • once opened, type in python --version and hit Enter.
    • If correctly installed you should see an output like Python 3.11.1
    • If you encounter an error that says python is not a valid command or something similar, It means your python installation is not added to the PATH environment variable. Go through these steps to solve the issue.
  2. In the command prompt, run:

    pip install neosekai-api

if you face an error, try running one of the following commands:

    python -m pip install neosekai-api
    python3 -m pip3 install neosekai-api
    python3 -m pip install neosekai-api

if it still doesn't work, open an issue on github.

To ensure neosekai-api has been installed correctly, run this Python script:

from neosekai_api import Novel, NovelChapter

If it shows an error such as No module called neosekai_api, try the installation again and if unsuccessful, report on Github.

Clone this wiki locally