-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
31 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,37 @@ | ||
# latex_transcribe | ||
# Latex Transcribe | ||
|
||
Local setup (without docker) using python 3.11 | ||
```` | ||
# We use python3.11. These instructions mirror the steps in Dockerfile | ||
## Running the official DockerHub image | ||
|
||
(This is sketch and these instructions are untested - assume there are typos, errors, guesses (e.g. Port number), and ommissions that need to be fixed) | ||
|
||
docker pull classtranscribe/latextranscribe:latest | ||
|
||
docker run -i -p 8080:8080 -t latextranscribe | ||
|
||
## Building Locally | ||
|
||
### Local build with Docker | ||
|
||
(This is sketch and these instructions are untested - assume there are typos, errors, guesses, and ommissions that need to be fixed) | ||
|
||
docker build -t latextranscribe | ||
docker run -i -p 8080:8080 -t latextranscribe | ||
|
||
|
||
### Local build without docker | ||
|
||
(This is sketch and these instructions are untested - assume there are typos, errors, guesses, and ommissions that need to be fixed) | ||
|
||
|
||
Assuming you have python3.11 installed. Note these instructions essentialy mirror the steps in Dockerfile. | ||
|
||
````sh | ||
python3.11 -m venv venv | ||
source ./venv/bin/activate | ||
|
||
pip install --upgrade pip | ||
pip install -r requirements.txt | ||
```` | ||
Hmm todo | ||
|
||
```` | ||
|