Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
labelme
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
jakambs
labelme
Commits
85561596
Commit
85561596
authored
Oct 30, 2022
by
Kentaro Wada
Browse files
Options
Downloads
Patches
Plain Diff
Stop supporting docker since it is unstable + docker hub has changed
parent
be4629a3
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+1
-16
1 addition, 16 deletions
README.md
docker/Dockerfile
+0
-25
0 additions, 25 deletions
docker/Dockerfile
with
1 addition
and
41 deletions
README.md
+
1
−
16
View file @
85561596
...
...
@@ -10,7 +10,6 @@
<a
href=
"https://pypi.python.org/pypi/labelme"
><img
src=
"https://img.shields.io/pypi/v/labelme.svg"
></a>
<a
href=
"https://pypi.org/project/labelme"
><img
src=
"https://img.shields.io/pypi/pyversions/labelme.svg"
></a>
<a
href=
"https://github.com/wkentaro/labelme/actions"
><img
src=
"https://github.com/wkentaro/labelme/workflows/ci/badge.svg?branch=main&event=push"
></a>
<a
href=
"https://hub.docker.com/r/wkentaro/labelme"
><img
src=
"https://img.shields.io/docker/cloud/build/wkentaro/labelme"
></a>
</div>
<div
align=
"center"
>
...
...
@@ -65,7 +64,7 @@ It is written in Python and uses Qt for its graphical interface.
There are options:
-
Platform agnostic installation:
[
Anaconda
](
#anaconda
)
,
[
Docker
](
#docker
)
-
Platform agnostic installation:
[
Anaconda
](
#anaconda
)
-
Platform specific installation:
[
Ubuntu
](
#ubuntu
)
,
[
macOS
](
#macos
)
,
[
Windows
](
#windows
)
-
Pre-build binaries from
[
the release section
](
https://github.com/wkentaro/labelme/releases
)
...
...
@@ -85,20 +84,6 @@ pip install labelme
# conda install labelme -c conda-forge
```
### Docker
You need install
[
docker
](
https://www.docker.com
)
, then run below:
```
bash
# on macOS
socat TCP-LISTEN:6000,reuseaddr,fork UNIX-CLIENT:
\"
$DISPLAY
\"
&
docker run
-it
-v
/tmp/.X11-unix:/tmp/.X11-unix
-e
DISPLAY
=
docker.for.mac.host.internal:0
-v
$(
pwd
)
:/root/workdir wkentaro/labelme
# on Linux
xhost +
docker run
-it
-v
/tmp/.X11-unix:/tmp/.X11-unix
-e
DISPLAY
=
:0
-v
$(
pwd
)
:/root/workdir wkentaro/labelme
```
### Ubuntu
```
bash
...
...
This diff is collapsed.
Click to expand it.
docker/Dockerfile
deleted
100644 → 0
+
0
−
25
View file @
be4629a3
FROM
ubuntu:bionic
LABEL
maintainer "Kentaro Wada <www.kentaro.wada@gmail.com>"
ENV
DEBIAN_FRONTEND=noninteractive
RUN
\
apt-get update
-qq
&&
\
apt-get
install
-qq
-y
\
git
\
python3
\
python3-pip
\
python3-matplotlib
\
python3-pyqt5
\
&&
rm
-rf
/var/lib/apt/lists/
*
RUN
python3
-m
pip
install
-U
pip setuptools wheel
RUN
python3
-m
pip
install
-v
git+https://github.com/wkentaro/labelme.git
RUN
mkdir
/root/workdir
ENV
LANG en-US
WORKDIR
/root/workdir
ENTRYPOINT
[ "labelme" ]
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment