Jupyter Notebook的自定义CSS文件

时间:2019-02-09 12:21:52

标签: jupyter jupyterhub

我想在jupyterHub中的jupyter笔记本中使用自定义.css样式文件。我将custom.css文件放在~.jupyter/custom/custom.css/opt/conda/lib/python3.6/site-packages/notebook/static/custom中,但它们都不起作用。有什么想法在使用DockerSpawner时如何强制自定义CSS样式吗?

1 个答案:

答案 0 :(得分:1)

为OP提供帮助可能为时已晚,但留在这里供以后的居民使用:

我将const country = useMemo(() => countries.find(country => country.name.toUpperCase().includes(filter.toUpperCase()) ), [countries, filter]) const [weather, setWeather] = useState([]) useEffect(() => { if (country) { const api_key = process.env.REACT_APP_API_KEY const url = `http://api.weatherstack.com/current?access_key=${api_key}&query=${country.capital}` axios.get(url) .then(response => { setWeather(response.data.current) }) } }, [country]) custom.css放在了custom.js中,效果很好。

注意,我不使用conda,而是使用默认的(本地)生成器而不是DockerSpawner(如果相关)。