Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Fix python3 unicode error in Julia docs
Browse files Browse the repository at this point in the history
  • Loading branch information
larroy committed Jan 29, 2020
1 parent 7b7607f commit 4ed8ee4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions ci/docker/runtime_functions.sh
Expand Up @@ -1748,6 +1748,7 @@ build_julia_docs() {

echo "Julia will check for MXNet in $MXNET_HOME/lib"


make -C julia/docs

GZIP=-9 tar -zcvf $julia_doc_artifact -C $julia_doc_path .
Expand Down
6 changes: 5 additions & 1 deletion julia/docs/Makefile
Expand Up @@ -21,7 +21,11 @@ all:
Pkg.develop(PackageSpec(name="MXNet", path = joinpath(pwd(), "..")))'
julia --color=yes --project=./ ./make.jl
pip install --user pygments mkdocs mkdocs-material python-markdown-math
~/.local/bin/mkdocs build
export LC_ALL="C.UTF-8"
export LANG="C.UTF-8"
echo $(LC_ALL)
echo $(LANG)
LC_ALL="C.UTF-8" ~/.local/bin/mkdocs build

clean:
rm -rvf venv
Expand Down

0 comments on commit 4ed8ee4

Please sign in to comment.