Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • master
1 result

Target

Select target project
  • ckaufmann/install-python-tensorflow-gym
1 result
Select Git revision
  • master
1 result
Show changes

Commits on Source 2

No preview for this file type
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
\usepackage[color=blue, author={Christof Kaufmann}]{attachfile2} % load after hyperref to avoid option clash from unicode=true \usepackage[color=blue, author={Christof Kaufmann}]{attachfile2} % load after hyperref to avoid option clash from unicode=true
\title{Installationsanleitung für Python mit OpenAI Gym für Linux} \title{Installationsanleitung für Python mit OpenAI Gym für Linux}
\date{Dezember 2023} \date{April 2024}
\author{Christof Kaufmann} \author{Christof Kaufmann}
% one infinite page, https://tex.stackexchange.com/a/19241/115883 % one infinite page, https://tex.stackexchange.com/a/19241/115883
...@@ -128,7 +128,7 @@ Wir erstellen nun eine Umgebung namens \lstinline|ml| mit Python 3.10 und den be ...@@ -128,7 +128,7 @@ Wir erstellen nun eine Umgebung namens \lstinline|ml| mit Python 3.10 und den be
\begin{lstlisting}[gobble=2, basicstyle=\ttfamily\footnotesize] \begin{lstlisting}[gobble=2, basicstyle=\ttfamily\footnotesize]
mamba create -n ml python=3.10 tensorflow ipympl tqdm mypy jupyter pystan \ mamba create -n ml python=3.10 tensorflow ipympl tqdm mypy jupyter pystan \
matplotlib seaborn scikit-learn openpyxl odfpy pyarrow \ matplotlib seaborn scikit-learn openpyxl odfpy pyarrow \
geopandas descartes pyogrio spyder \ geopandas descartes pyogrio spyder optuna plotly \
jax-jumpy moviepy shimmy-atari gymnasium-box2d jax-jumpy moviepy shimmy-atari gymnasium-box2d
\end{lstlisting} \end{lstlisting}
......
No preview for this file type
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
\title{Installationsanleitung für Python mit OpenAI Gym für Windows} \title{Installationsanleitung für Python mit OpenAI Gym für Windows}
\date{Dezember 2023} \date{April 2024}
\author{Christof Kaufmann} \author{Christof Kaufmann}
...@@ -130,7 +130,7 @@ Wir erstellen nun eine Umgebung namens \lstinline|ml| mit Python 3.9 und den ben ...@@ -130,7 +130,7 @@ Wir erstellen nun eine Umgebung namens \lstinline|ml| mit Python 3.9 und den ben
\begin{lstlisting}[gobble=2, basicstyle=\ttfamily\footnotesize] \begin{lstlisting}[gobble=2, basicstyle=\ttfamily\footnotesize]
mamba create -n ml python=3.9 astunparse matplotlib scikit-learn seaborn ^ mamba create -n ml python=3.9 astunparse matplotlib scikit-learn seaborn ^
ipympl mypy jupyter notebook spyder gym-box2d gym-atari ^ ipympl mypy jupyter notebook spyder gym-box2d gym-atari ^
openpyxl odfpy pyarrow geopandas pyogrio ^ openpyxl odfpy pyarrow geopandas pyogrio optuna plotly ^
jax-jumpy moviepy shimmy-atari gymnasium-box2d jax-jumpy moviepy shimmy-atari gymnasium-box2d
\end{lstlisting} \end{lstlisting}
Sie können die Umgebung jederzeit mit \lstinline|mamba activate ml| aktivieren und mit \lstinline|mamba deactivate| deaktivieren. Generell können Sie mit \lstinline|mamba create -n <MYENVNAME> <PAKETE>| auch weitere Umgebungen einrichten und diese mit \lstinline|mamba activate <MYENVNAME>| aktivieren. Sie können die Umgebung jederzeit mit \lstinline|mamba activate ml| aktivieren und mit \lstinline|mamba deactivate| deaktivieren. Generell können Sie mit \lstinline|mamba create -n <MYENVNAME> <PAKETE>| auch weitere Umgebungen einrichten und diese mit \lstinline|mamba activate <MYENVNAME>| aktivieren.
......